storage
storage copied to clipboard
Container Storage Library
The "quotas" map and "next project ID" field don't take well to being created and updated concurrently in multiple threads. Throw a lock around the whole object when any of...
So i was discovering rootless options in https://github.com/containers/podman/issues/18375 podman issue and when i discovered rootless mode, i of course wanted to change runroot path, but looking through code, it seems...
man containers-storage.conf says … [storage.options] additionalimagestores=[] Paths to additional container image stores. Usually, these are read-only and stored on remote network shares. But when I tried to mount read-only file...
This change seems to fix the scenario described in containers/podman#17198 I would appreciate advice on writing a testcase though, I would imagine that `delete_container` testcase would be a good starting...
It returns a summary for everything visible in the layer where it should return the usage for just this layer, similar to overlay. The zfs clone data set for containers...
Looking at #1324, #1332, #1379 , it’s not absolutely required but boy it would be _nice_ if we could have the programming language enforce locking invariants - That locks that...
**Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)** /kind bug **Description** I'm aware running `podman commit` then pulling the power is not supported,...
Recently I opened this issue https://github.com/containers/buildah/issues/4370 in the buildah repo and found the culprit. While building, I didn't specify `CGO_ENABLED=1`. This causes an infinite loop of forks, because this is...
In order to configure the AdditionalImageStores we have to change the config file. I'd like to have the possibility to add additional image stores just adding a file inside a...
Currently, both `store.Mount` and `store.Unmount` only work with the primary layer store, and lock it for writing: https://github.com/containers/storage/blob/7de6744c9fdc616b44539703c5831ed0f328652c/store.go#L2745 https://github.com/containers/storage/blob/7de6744c9fdc616b44539703c5831ed0f328652c/store.go#L2850 as of e84b2649927d339254fe80bf87aee0ec32a6a9d7 . Meanwhile, `Diff` reads all layer stores, and...