Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | container: move volume chown after spec generation | Giuseppe Scrivano | 2020-06-29 |
| | | | | | | | | | move the chown for newly created volumes after the spec generation so the correct UID/GID are known. Closes: https://github.com/containers/libpod/issues/5698 Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com> | ||
* | Deprecate & remove IsCtrSpecific in favor of IsAnon | Matthew Heon | 2020-01-29 |
| | | | | | | | | | | | | | | | | | | | In Podman 1.6.3, we added support for anonymous volumes - fixing our old, broken support for named volumes that were created with containers. Unfortunately, this reused the database field we used for the old implementation, and toggled volume removal on for `podman run --rm` - so now, we were removing *named* volumes created with older versions of Podman. We can't modify these old volumes in the DB, so the next-safest thing to do is swap to a new field to indicate volumes should be removed. Problem: Volumes created with 1.6.3 and up until this lands, even anonymous volumes, will not be removed. However, this is safer than removing too many volumes, as we were doing before. Fixes #5009 Signed-off-by: Matthew Heon <matthew.heon@pm.me> | ||
* | Show volume options in 'volume inspect' | Matthew Heon | 2019-10-18 |
| | | | | | | | We initialized the map to show them, but didn't actually copy them in, so they weren't being displayed. Signed-off-by: Matthew Heon <mheon@redhat.com> | ||
* | Fix typos | Matthew Heon | 2019-08-02 |
| | | | | Signed-off-by: Matthew Heon <matthew.heon@pm.me> | ||
* | Implement backend for 'volume inspect' | Matthew Heon | 2019-08-02 |
Begin to separate the internal structures and frontend for inspect on volumes. We can't rely on keeping internal data structures for external presentation - separating presentation and internal data format is good practice. Signed-off-by: Matthew Heon <matthew.heon@pm.me> |