Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker wrapper doesn't remove image after task has finished #6196

Closed
computezrmle opened this issue Mar 26, 2025 · 5 comments
Closed

Docker wrapper doesn't remove image after task has finished #6196

computezrmle opened this issue Mar 26, 2025 · 5 comments

Comments

@computezrmle
Copy link
Contributor

Please verify.
If necessary please provide a patch.
Don't know if docker behaves differently.

At the end of my docker task logs (with podman) a command sequence like this can be found:

running docker command: stop boinc__lhcathomedev.cern.ch_lhcathome-dev__theory_2848-4472926-82_1
command output:
boinc__lhcathomedev.cern.ch_lhcathome-dev__theory_2848-4472926-82_1
running docker command: container rm boinc__lhcathomedev.cern.ch_lhcathome-dev__theory_2848-4472926-82_1
command output:
boinc__lhcathomedev.cern.ch_lhcathome-dev__theory_2848-4472926-82_1
running docker command: image rm boinc__lhcathomedev.cern.ch_lhcathome-dev__theory_2848-4472926-82

stop seems to be OK.
container rm seems to be OK

image rm doesn't seem to be OK (at least if podman is used).

According to the podman manual rm removes containers while rmi is the command to remove images.
As a result unused images remain on the local storage until removed manually.

@AenBleidd
Copy link
Member

@computezrmle, might this be the case #6051 ?

@computezrmle
Copy link
Contributor Author

For me this line doesn't make sense - at least for podman - since it creates an illegal remove command.

sprintf(cmd, "image rm %s", image_name);

@computezrmle
Copy link
Contributor Author

Sorry, mixed podman rmi with podman image rm which seem to be the same.

What remains is the fact that disk usage and number of images steadily grows.
Any idea how this can be automatically cleaned.

@davidpanderson
Copy link
Contributor

'podman image rm ' is the correct syntax.

What happens when you run the command manually?

@computezrmle
Copy link
Contributor Author

Hm.
When I run the command manually it works.
I think I was misreading the output from certain podman commands like podman images -a which looks like:

REPOSITORY                   TAG         IMAGE ID      CREATED            SIZE
<none>                       <none>      33cdac713b70  About an hour ago  352 MB
localhost/ff                 latest      241d9a8fe276  About an hour ago  352 MB
<none>                       <none>      187986ebe8de  About an hour ago  352 MB
<none>                       <none>      557ccc8092f9  About an hour ago  352 MB
<none>                       <none>      bc09b8697071  About an hour ago  352 MB
docker.io/library/almalinux  9           df3270cc8bc8  2 weeks ago        217 MB

At first sight it suggests there are 4 unused images consuming 352 MB each.
But I noticed this is virtual disk usage and the images disappear when (in this case) ff is removed.

Will close this issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

No branches or pull requests

3 participants