Jump to content

Docker: Difference between revisions

m
→‎NGINX: auto restart
m (→‎NGINX: auto restart)
m (→‎NGINX: auto restart)
Line 89:
Run nginx docker image with auto Restart on reboot option
docker run --name nginx -p 80:80 -d -v ~/docker-nginx/html:/usr/share/nginx/html --restart unless-stopped nginx
 
Docker currently has four restart policies[https://blog.codeship.com/ensuring-containers-are-always-running-with-dockers-restart-policy/]:
no
on-failure
unless-stopped
always
 
;Multiple Instances
Cookies help us deliver our services. By using our services, you agree to our use of cookies.