Docker restart container when docker restarts
Simply add the following flag when using docker run
--restart=always
If the container is already running:
docker update --restart=always <container>
Simply add the following flag when using docker run
--restart=always
If the container is already running:
docker update --restart=always <container>