docker run restart 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>
Example 3: docker run name
docker run --name <container name> -dp <local port>:<container port> <image>