docker container restart code example
Example 1: docker restart
sudo systemctl restart docker
Example 2: docker run restart on boot
$ docker run -d --restart unless-stopped <image>
Example 3: docker restart container
docker restart CONTAINER_ID
Example 4: docker how to restart container at coputer startup
docker run -d --restart unless-stopped -p27017:27017 mongo
Example 5: docker --restart example
# To limit retart attempt, add [:int]
docker run -d --restart=on-failure:3
Example 6: docker why my container start on reboot
docker update --restart=no $(docker ps -a -q)