diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2022-06-25 18:59:53 +0200 |
---|---|---|
committer | Giuseppe Scrivano <gscrivan@redhat.com> | 2022-06-27 20:22:20 +0200 |
commit | aada13f244d52dad9b6a1cfaa725e9d36d75a858 (patch) | |
tree | 5342476dc54a2bf9ce64096c124249c6e631a8f6 /libpod/volume_internal.go | |
parent | a4094530bc8b0d5fdbd8ad4ce9a136fe15ee7cee (diff) | |
download | podman-aada13f244d52dad9b6a1cfaa725e9d36d75a858.tar.gz podman-aada13f244d52dad9b6a1cfaa725e9d36d75a858.tar.bz2 podman-aada13f244d52dad9b6a1cfaa725e9d36d75a858.zip |
volume: new options [no]copy
add two new options to the volume create command: copy and nocopy.
When nocopy is specified, the files from the container image are not
copied up to the volume.
Closes: https://github.com/containers/podman/issues/14722
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'libpod/volume_internal.go')
-rw-r--r-- | libpod/volume_internal.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libpod/volume_internal.go b/libpod/volume_internal.go index e0ebb729d..24522c0f9 100644 --- a/libpod/volume_internal.go +++ b/libpod/volume_internal.go @@ -55,6 +55,12 @@ func (v *Volume) needsMount() bool { if _, ok := v.config.Options["NOQUOTA"]; ok { index++ } + if _, ok := v.config.Options["nocopy"]; ok { + index++ + } + if _, ok := v.config.Options["copy"]; ok { + index++ + } // when uid or gid is set there is also the "o" option // set so we have to ignore this one as well if index > 0 { |