docker container auto start code example
Example 1: docker run restart on boot
$ docker run -d --restart unless-stopped
Example 2: docker make container auto start
docker run -d --restart always cont-name image-name:image-version
$ docker run -d --restart unless-stopped
docker run -d --restart always cont-name image-name:image-version