docker run --rm code example

Example 1: remove docker container

# 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)

Example 2: docker force remove container

docker rm -f [containerid]

Example 3: docker remove container

//Check if the container is running
docker ps -a

//stop the container
docker stop <container_id>

//remove the container
docker rm <container_id>

Example 4: docker run name

docker run --name <container name> -dp <local port>:<container port> <image>

Example 5: how to remove a docker container

docker container rm [container id]

Example 6: docker remove container

docker system prune

Tags:

Misc Example