This commit is contained in:
DoTheEvo 2022-01-09 13:26:09 +01:00
parent 4d1f79e0fb
commit 146d997f9c
1 changed files with 3 additions and 3 deletions

View File

@ -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.<br>
Most of the stuff around here is about deployment, how to deploy others people work<br>