From 146d997f9c515b9a4133b44cc4fff38c2d3c7ee6 Mon Sep 17 00:00:00 2001 From: DoTheEvo Date: Sun, 9 Jan 2022 13:26:09 +0100 Subject: [PATCH] update --- docker-basics-and-troubleshoot/readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-basics-and-troubleshoot/readme.md b/docker-basics-and-troubleshoot/readme.md index 34082ff..3a258dd 100644 --- a/docker-basics-and-troubleshoot/readme.md +++ b/docker-basics-and-troubleshoot/readme.md @@ -7,10 +7,10 @@ # Overview -Docker is a container technology that utilizes the host OS's kernel while putting the userland applications into a sandbox. -It is more lightweight than a full-fledged virtual machine, but you're applications need to be compatible with the host OS. +**Docker** is a container technology that uses the hosts kernel while putting the userland applications into a sandbox. +It is much more lightweight than a full-fledged virtual machine, but can only run stuff that can run on host. -Compose is a Docker tool that allows defining containers using a YAML file and run them with a single command. +**Compose** is a Docker tool that allows defining containers using a YAML file and run them with a single command. The purpose of docker and docker-compose is either development or deployment.
Most of the stuff around here is about deployment, how to deploy others people work