Answers for "docker start 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
1

start docker at boot

sudo systemctl enable docker.service
Posted by: Guest on September-10-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language