Jack
0
Q:

remove docker container

docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
7
docker rm $(docker ps -a -q)
11
# List all containers (only IDs)
docker ps -aq
# Stop all running containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all images
docker rmi $(docker images -q
2
//Check if the container is running
docker ps -a

//stop the container
docker stop <container_id>

//remove the container
docker rm <container_id>
3
docker image rm [OPTIONS] IMAGE [IMAGE...]
#[OPTIONS]
--force , -f		Force removal of the image
--no-prune		Do not delete untagged parents
6
docker rm -f [containerid]
2
docker container rm [container id]
3
docker system prune
2
cheat sheet

https://github.com/lifeeric/docker-cheat-sheet
0

New to Communities?

Join the community