Quantcast
Channel: User Recoba20 - DevOps Stack Exchange
Viewing all articles
Browse latest Browse all 17

Answer by Recoba20 for Can I remove a docker image and still keep the container?

$
0
0

There are 2 really major points for Docker containers.

  1. You make sure the app dependencies are versioned and encapsulatedinside the container. Container runs smoothly eveywhere, as long as you have the Docker daemon.
  2. You have the capability to create/destroy acontainer on any time, also known as ephemeral property. You could test easily, maintain N of them if needed ( Replica Sets in K8S for example are doing just that, Docker Swarm uses services to maintain this number as well ).

The official Docker docs defines an image as

An image is a read-only template with instructions for creating a Docker container

You can't remove an image, because the container relies on it.

docker image rm ubuntu:20.04Error response from daemon: conflict: unable to remove repository reference "ubuntu:20.04" (must force) - container ecd06b4eb4bf is using its referenced image

Then you might force the process

 docker image rm -f ubuntu:20.04Untagged: ubuntu:20.04Untagged: ubuntu@sha256:747d2dbbaaee995098c9792d99bd333c6783ce56150d1b11e333bbceed5c54d7Untagged: ubuntu@sha256:8bce67040cd0ae39e0beb55bcb976a824d9966d2ac8d2e4bf6119b45505cee64

But that just untags the image, it's still here.

docker image lsREPOSITORY             TAG                                        IMAGE ID            CREATED             SIZE<none>                 <none>                                     1d622ef86b13        3 weeks ago         73.9MB

So to your question, the best practice is to only remove images that are not being used by any containers. If you maintain 2-5 versions of your app, you could safely remove the others. Also you schould strive for minimum size of each image, even in total that schould not bother your available space that much.


Viewing all articles
Browse latest Browse all 17

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>