Replies: 1 comment 1 reply
-
@joshqou I don't follow your logic here or perhaps I am misunderstanding what you mean by independent cache. Care to elaborate? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Had to deal with an unexpected shutdown on a machine that was running
podman update. Unsure exactly where it was in the update process but it was far enough to make the images of some containers unbootable due to missing files.Found #24106 after a while of searching, which lead to me running
podman system check -r, which fixed the effected images. File mangling is unlikely since the root filesystem is btrfs which provides CoW.This solution works fine for root containers, but not for user containers, which have their own independent cache. For the user containers, I had to just
rm -rf .local/share/containers, which is an acceptable solution for me as I use fuse mounts, but won't be if I had been using container volumes.Given how podman auto-update is frequently recommended, it seems insane to me that this kind of failure condition isn't well documented.
Filesystem errors for searchability:
Beta Was this translation helpful? Give feedback.
All reactions