Answers for "how to make docker container run on startup"

1

docker autostart container ubuntu on startup

# New container
$ docker run -d --restart unless-stopped your_container_name_here

# Existing container
$ docker update --restart unless-stopped your_container_name_here
Posted by: Guest on December-24-2021
0

docker make container auto start

docker run -d --restart always cont-name image-name:image-version
Posted by: Guest on March-28-2021

Code answers related to "how to make docker container run on startup"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language