diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-25 09:35:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 09:35:03 -0400 |
commit | a9f8fb9cea7763e45e2e848a62df345d79893ef0 (patch) | |
tree | f6826812a0cf2d27d66fe963893d31d04434c57a /pkg/specgenutil/util.go | |
parent | ba6356280a86531d3cda7016859aef98bb3d8272 (diff) | |
parent | 13079abe3f7998f01d1b2e30dae3660cfb5a98c8 (diff) | |
download | podman-a9f8fb9cea7763e45e2e848a62df345d79893ef0.tar.gz podman-a9f8fb9cea7763e45e2e848a62df345d79893ef0.tar.bz2 podman-a9f8fb9cea7763e45e2e848a62df345d79893ef0.zip |
Merge pull request #13981 from rhatdan/volume
Add support for passing --volumepath
Diffstat (limited to 'pkg/specgenutil/util.go')
-rw-r--r-- | pkg/specgenutil/util.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/specgenutil/util.go b/pkg/specgenutil/util.go index 80d31398b..fa2e90457 100644 --- a/pkg/specgenutil/util.go +++ b/pkg/specgenutil/util.go @@ -281,6 +281,7 @@ func CreateExitCommandArgs(storageConfig storageTypes.StoreOptions, config *conf "--tmpdir", config.Engine.TmpDir, "--network-config-dir", config.Network.NetworkConfigDir, "--network-backend", config.Network.NetworkBackend, + "--volumepath", config.Engine.VolumePath, } if config.Engine.OCIRuntime != "" { command = append(command, []string{"--runtime", config.Engine.OCIRuntime}...) |