auto restart container docker command code example
Example 1: how to restart docker linux
$ sudo systemctl start docker
Example 2: docker how to restart container at coputer startup
docker run -d --restart unless-stopped -p27017:27017 mongo
$ sudo systemctl start docker
docker run -d --restart unless-stopped -p27017:27017 mongo