We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This seems to be a variant of #992. Build an image:
# podman run --name c1 fedora true # podman commit c1 img1 # podman rm c1
Build a second image based on the first:
# podman run --name c2 img1 true # podman commit c2 img2 # podman rm c2
Run podman images, see img1 and img2 as expected. Delete the new (second) image, and the first one is gone too:
podman images
# podman rmi img2 # podman images <where did img1 go?>
podman-0.7.3-1.git0791210.fc28
The text was updated successfully, but these errors were encountered:
Fixed with #1174.
Sorry, something went wrong.
podman prune images
umohnani8
No branches or pull requests
This seems to be a variant of #992. Build an image:
Build a second image based on the first:
Run
podman images
, see img1 and img2 as expected. Delete the new (second) image, and the first one is gone too:podman-0.7.3-1.git0791210.fc28
The text was updated successfully, but these errors were encountered: