diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-27 21:53:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 21:53:37 +0200 |
commit | f6f71724949c22cf89a44015c29bd5a144db7390 (patch) | |
tree | 937537403d515fe2fcb1df9aebc17600347898a0 /pkg/specgen/container_validate.go | |
parent | 8642e256f2036f4263b9817322cde7eec8b0915c (diff) | |
parent | 67ec4e1d272d20610f885f91cc322edf57a13f45 (diff) | |
download | podman-f6f71724949c22cf89a44015c29bd5a144db7390.tar.gz podman-f6f71724949c22cf89a44015c29bd5a144db7390.tar.bz2 podman-f6f71724949c22cf89a44015c29bd5a144db7390.zip |
Merge pull request #6000 from mheon/volume_backend_flags
Add support for volumes-from, image volumes, init
Diffstat (limited to 'pkg/specgen/container_validate.go')
-rw-r--r-- | pkg/specgen/container_validate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/specgen/container_validate.go b/pkg/specgen/container_validate.go index 87fc59dfe..94e456c52 100644 --- a/pkg/specgen/container_validate.go +++ b/pkg/specgen/container_validate.go @@ -14,7 +14,7 @@ var ( // SystemDValues describes the only values that SystemD can be SystemDValues = []string{"true", "false", "always"} // ImageVolumeModeValues describes the only values that ImageVolumeMode can be - ImageVolumeModeValues = []string{"ignore", "tmpfs", "bind"} + ImageVolumeModeValues = []string{"ignore", "tmpfs", "anonymous"} ) func exclusiveOptions(opt1, opt2 string) error { |