why container starts automatically after docker restart code example
Example 1: docker how to restart container at coputer startup
docker run -d --restart unless-stopped -p27017:27017 mongo
Example 2: docker why my container start on reboot
docker update --restart=no $(docker ps -a -q)