docker run until stopped code example
Example 1: docker run restart on boot
$ docker run -d --restart unless-stopped
Example 2: docker --restart example
# To limit retart attempt, add [:int]
docker run -d --restart=on-failure:3
$ docker run -d --restart unless-stopped
# To limit retart attempt, add [:int]
docker run -d --restart=on-failure:3