From 64dd2b61f78a490846ba0de31a35cf3f20120e7d Mon Sep 17 00:00:00 2001 From: Michael Scalzetti Date: Thu, 5 Jan 2023 00:15:01 -0500 Subject: [PATCH] adding site stuff --- blog/book.toml | 5 +++++ blog/src/SUMMARY.md | 4 ++++ blog/src/dockertalk.md | 28 ++++++++++++++++++++++++++++ blog/src/home.md | 5 +++++ 4 files changed, 42 insertions(+) create mode 100644 blog/book.toml create mode 100644 blog/src/SUMMARY.md create mode 100644 blog/src/dockertalk.md create mode 100644 blog/src/home.md diff --git a/blog/book.toml b/blog/book.toml new file mode 100644 index 0000000..d34134a --- /dev/null +++ b/blog/book.toml @@ -0,0 +1,5 @@ +[book] +authors = [] +language = "en" +multilingual = false +src = "src" diff --git a/blog/src/SUMMARY.md b/blog/src/SUMMARY.md new file mode 100644 index 0000000..f3e1efa --- /dev/null +++ b/blog/src/SUMMARY.md @@ -0,0 +1,4 @@ +# Summary + +- [Home](./home.md) +- [Docker Talk](./dockertalk.md) diff --git a/blog/src/dockertalk.md b/blog/src/dockertalk.md new file mode 100644 index 0000000..ed873dc --- /dev/null +++ b/blog/src/dockertalk.md @@ -0,0 +1,28 @@ +# Docker Talk + +Check out the original slides [here](https://docs.google.com/presentation/d/1jWco185nZknGR_bmbncy1NGLs7PgyrKLFXogSn7uLb8/edit?usp=sharing) + +## What is docker? + +In order to fully explain what docker is, there are a few technologies we should go over first! + +### Virtualization + +β€œIn computing, virtualization or virtualisation is the act of creating a virtual version of something at the same abstraction level, including virtual computer hardware platforms, storage devices, and computer network resources. β€œ + +TLDR: Put as much of a computer as is necessary to emulate an operating system, piece of software, etc - and put that on top of your computer/server + + +### Virtual Machines + +β€œA computer system created using software on one physical computer in order to emulate the functionality of another separate physical computer.” + +TLDR: Virtualization of a FULL computer on top of yours (includes everything from BIOS/UEFI and TPM to top level programs) + + +### Containerization + + + + + diff --git a/blog/src/home.md b/blog/src/home.md new file mode 100644 index 0000000..8ce9e9f --- /dev/null +++ b/blog/src/home.md @@ -0,0 +1,5 @@ +# Home + +This is my blog, I post intersting stuff on here sometimes I guess. + +Check out my different write ups!