Docker Tutorials
Aug 25, 2020 | 786 views
Basic Tutorials:
Docker Volume:
- Understanding Docker Volumes with an example
- Docker Tutorial Series : Part 7 : Data Volumes [recommended]
General and comprehensive Tutorial:
- Docker Tutorial Series (Recommended, there are a lot of content)
- Container Tutorials (Looks like a really good resources)
Configure docker image autorestart:
# In order to enable a restart policy, you need to use the --restart argument when executing docker run
docker run -dit --restart unless-stopped httpd
# Or configure a running container
# unless-stopped: The container would always be restarted unless it was manually stopped
docker update --restart unless-stopped container_id
Content from Docker Tutorial Series :
Part 3 — More on Images and Containers
Part 5 — Building your own Docker Images
Part 6 — Docker Private Registry
Part 10 — Docker Swarm Tutorial
Part 11 — Docker Swarm on Google Compute Engine
Part 12 — Getting Started with Kubernetes using Minikube
Part 13 — Docker Management Commands
Appendix
Learning Docker ? Move To The Cloud !