Answers for "docker restart command"

20

docker stop all

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
Posted by: Guest on May-10-2020
3

how to restart docker linux

$ sudo systemctl start docker
Posted by: Guest on May-29-2020
4

docker restart

sudo systemctl restart docker
Posted by: Guest on April-21-2021
4

docker run restart on boot

$ docker run -d --restart unless-stopped <image>
Posted by: Guest on June-26-2020
2

docker restart container

docker restart CONTAINER_ID
Posted by: Guest on March-15-2021
0

docker how to restart container at coputer startup

docker run -d --restart unless-stopped -p27017:27017 mongo
Posted by: Guest on October-12-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language