selfhosted-apps-docker/docker-basics-and-troubleshoot/readme.md

682 B

Docker basics and troubleshooting

guide-by-example

logo

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.

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

Basics