docker file restart always code example
Example 1: docker run restart always
$ docker run --restart=always redis
Example 2: docker --restart example
# To limit retart attempt, add [:int]
docker run -d --restart=on-failure:3
$ docker run --restart=always redis
# To limit retart attempt, add [:int]
docker run -d --restart=on-failure:3