diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-06-27 12:35:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 12:35:10 +0000 |
commit | 1022ea36dd36cf57a2556f5eac99b30500513e08 (patch) | |
tree | 1cf20f037be01e2bee6c760d8dde3af3e02ad094 /pkg | |
parent | cc86315455bb9b4fed6318f9e3c4222ba9215e03 (diff) | |
parent | 2eda547dcd597a23ecc2311a7ceca46746a3026e (diff) | |
download | podman-1022ea36dd36cf57a2556f5eac99b30500513e08.tar.gz podman-1022ea36dd36cf57a2556f5eac99b30500513e08.tar.bz2 podman-1022ea36dd36cf57a2556f5eac99b30500513e08.zip |
Merge pull request #14687 from cdoern/vols
podman run/create -v relative filepath support
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/specgen/volumes.go | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/pkg/specgen/volumes.go b/pkg/specgen/volumes.go index a7a1022b0..f272a5c11 100644 --- a/pkg/specgen/volumes.go +++ b/pkg/specgen/volumes.go @@ -1,6 +1,7 @@ package specgen import ( + "path/filepath" "strings" "github.com/containers/common/pkg/parse" @@ -56,7 +57,6 @@ func GenVolumeMounts(volumeFlag []string) (map[string]spec.Mount, map[string]*Na overlayVolumes := make(map[string]*OverlayVolume) volumeFormatErr := errors.Errorf("incorrect volume format, should be [host-dir:]ctr-dir[:option]") - for _, vol := range volumeFlag { var ( options []string @@ -71,6 +71,20 @@ func GenVolumeMounts(volumeFlag []string) (map[string]spec.Mount, map[string]*Na } src = splitVol[0] + + // Support relative paths beginning with ./ + if strings.HasPrefix(src, "./") { + path, err := filepath.EvalSymlinks(src) + if err != nil { + return nil, nil, nil, err + } + src, err = filepath.Abs(path) + if err != nil { + return nil, nil, nil, err + } + splitVol[0] = src + } + if len(splitVol) == 1 { // This is an anonymous named volume. Only thing given // is destination. |