docker restarting after start code example
Example 1: docker run restart always
$ docker run --restart=always redis
Example 2: docker run restart on boot
$ docker run -d --restart unless-stopped <image>
$ docker run --restart=always redis
$ docker run -d --restart unless-stopped <image>