docker restart command code example

Example 1: docker stop all

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)

Example 2: how to restart docker linux

$ sudo systemctl start docker

Example 3: docker restart

sudo systemctl restart docker

Example 4: docker run restart on boot

$ docker run -d --restart unless-stopped <image>

Example 5: docker restart container

docker restart CONTAINER_ID

Example 6: docker how to restart container at coputer startup

docker run -d --restart unless-stopped -p27017:27017 mongo

Tags: