how to autostart containers in ubuntu code example
Example 1: how to autostart containers in ubuntu
$ docker run -d --restart unless-stopped redis
Example 2: how to autostart containers in ubuntu
$ docker update --restart unless-stopped $(docker ps -q)