docker run restart false 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
$ docker run --restart=always redis
$ docker run -d --restart unless-stopped