Horje
remove all stopped containers Code Example
remove stopped containers
$ docker rm $(docker ps -a -q)
docker remove all containers
docker rm $(docker ps -a -q)
docker remove all stopped
$ docker rm $(docker ps --filter status=exited -q)
remove all stopped containers
$ docker rm $(docker ps --filter status=exited -q)
$ docker ps --filter status=exited -q | xargs docker rm
Delete all running and stopped containers
docker container rm -f $(docker ps -aq)




Shell

Related
view path powershell Code Example view path powershell Code Example
git force checkout Code Example git force checkout Code Example
flutter doctor - CocoaPods installed but not working Code Example flutter doctor - CocoaPods installed but not working Code Example
install python math library Code Example install python math library Code Example
doctrine cache clear Code Example doctrine cache clear Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11