docker run at startup code example
Example 1: docker run restart on boot
$ docker run -d --restart unless-stopped
Example 2: docker start container
$ docker start my_container
Example 3: docker how to restart container at coputer startup
docker run -d --restart unless-stopped -p27017:27017 mongo
Example 4: docker how to run existing container
docker start