docker container after restart code example
Example 1: docker run restart always
$ docker run --restart=always redis
Example 2: docker how to restart container at coputer startup
docker run -d --restart unless-stopped -p27017:27017 mongo
$ docker run --restart=always redis
docker run -d --restart unless-stopped -p27017:27017 mongo