start docker on reboot code example
Example 1: docker run restart on boot
$ docker run -d --restart unless-stopped <image>
Example 2: docker why my container start on reboot
docker update --restart=no $(docker ps -a -q)
$ docker run -d --restart unless-stopped <image>
docker update --restart=no $(docker ps -a -q)