Digital Marketing

How to resume an exited Docker container

 You can restart and attach an existing exited container and your changes are still there.


docker start  `docker ps -q -l` # restart it in the background

docker attach `docker ps -q -l` # reattach the terminal & stdin

Comments

Popular posts from this blog

MySQL Sandbox with the Sakila sample database