JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Docker >

Permanently delete a container in Docker

Author:JIYIK Last Updated:2025/03/25 Views:

Normally, Docker does not delete stopped containers, it only unmarks them. This process occurs to avoid accidental deletion of stopped containers.

This article will discuss how to properly remove unused and untagged containers to reclaim resources in Docker.


Permanently delete a container in Docker

In Docker, we have remove command to forcefully remove a particular image. This command is for images docker rmi -f <image_id>and for containers docker rm <container_id>.

However, in theory, this command does not delete the container image, but only soft-deletes it by unmarking the object.

If we docker image ls -ainspect our stopped images using the command , we can verify that the above command only unmarks our images instead of deleting them.

Sample output:

Untagged: my_image:latest

The following sections will discuss multiple scripts and parameters that will help us to permanently delete docker containers.


Pruning containers in Docker

When using Docker, we can quickly accumulate many unused objects that can take up a lot of disk space and clutter the output generated by Docker commands. Unfortunately, Docker does not remove untagged and unused objects such as containers, images, volumes, and networks unless we explicitly tell it to do so.

We can quickly reclaim resources by deleting stopped containers and pruning containers. For example, we can use the following command.

Sample code:

docker system prune -a

The -a flag will remove all unused images. After running it, we will be prompted with the following message.

We can bypass this message by adding the above command with the -f force flag.

WARNING! This command will remove the following:
        - all containers with the stopped status
        - all network paths not used by at least one (1) container
        - all images without at least one (1) container associated with them
        - all cache
Are you sure you want to continue? [y/N]

Additionally, the above command will not remove unused volumes attached to previously unused Docker containers. However, we can attach and use the --volumes parameter to include removal of unused volumes.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Copy files from host to Docker container

Publish Date:2025/03/25 Views:126 Category:Docker

This article will discuss and demonstrate methods we can use to transfer files from the host to a running container in Docker. docker cp Copy the file from the host to the Docker container using docker cp The command is one of the simplest

Get the IP address of the Docker container

Publish Date:2025/03/25 Views:102 Category:Docker

This article demonstrates how to get the IP address of a Docker container. Connect to the Bridge network and get the IP address of the Docker container One of the big reasons why docker containers are so convenient is that we can easily con

Uninstalling Docker on macOS

Publish Date:2025/03/25 Views:95 Category:Docker

Recently, we have seen widespread adoption of Docker as the ultimate containerization platform. Because of this, setting up Docker on all platforms has been greatly simplified, including macOS and Windows. However, some users usually face p

Enter the Docker container's shell

Publish Date:2025/03/25 Views:98 Category:Docker

This article will demonstrate how to enter the Docker container shell using multiple methods. Use docker exec to enter the Docker container's shell We need to have a container up and running to use this command. We can check the status of t

Listing containers in Docker

Publish Date:2025/03/25 Views:122 Category:Docker

This article will discuss various commands for listing containers created in our system. This means we should create some containers beforehand for these commands to return values. List all running containers in Docker We will start by list

Mount the host directory into the Docker container

Publish Date:2025/03/25 Views:189 Category:Docker

Docker provides, among other features, tools to work with the host operating system and the container file system. One of these features is the ability to persist data in containers and share data between containers by mounting directories

Docker build command with multiple parameters

Publish Date:2025/03/25 Views:138 Category:Docker

docker build The command allows us to create a Docker image from a Dockerfile. It also allows us to build an image from a context that references a set of files located in a location specified by a PATH or URL. A Dockerfile, on the other ha

The difference between CMD and ENTRYPOINT in Docker

Publish Date:2025/03/25 Views:141 Category:Docker

Docker containers have become the standard when it comes to managing software and dependencies in different environments. When working with real-world applications, you need to create a docker file before building your application container

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Recommended

Tags

Scan the Code
Easier Access Tutorial