Answers for "docker restart all exited containers bash"

0

docker remove all exited containers

docker container prune
Posted by: Guest on November-04-2020
0

docker start exited container

docker start  `docker ps -q -l` # restart it in the background
docker attach `docker ps -q -l` # reattach the terminal & stdin
Posted by: Guest on June-11-2021

Code answers related to "docker restart all exited containers bash"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language