Repository for docker intensive course
Presentation link (last updates): https://docs.google.com/presentation/d/1kx1bCXOkcVmcBR2C2vasJOoID1KlDJkX6VZuKXRJpTw/edit?usp=sharing
- Install docker
- Install compose
pip install docker-compose- https://www.digitalocean.com/community/tutorials/how-to-install-docker-compose-on-ubuntu-18-04-ru
- Allow user to use it (add to docker group)
sudo usermod -aG docker $USER
- Check it works
docker run --rm hello-world