diff options
author | cdoern <cdoern@redhat.com> | 2021-09-01 10:59:23 -0400 |
---|---|---|
committer | cdoern <cdoern@redhat.com> | 2021-10-01 14:09:11 -0400 |
commit | 6da97c86314d8c80b912ba83db57fd26da19bfb7 (patch) | |
tree | 0e8e3de1d5eb89465b965458fb3068f59c702f34 /libpod/pod_api.go | |
parent | e9d8524af5122314e47385299bf9ae3d0b000096 (diff) | |
download | podman-6da97c86314d8c80b912ba83db57fd26da19bfb7.tar.gz podman-6da97c86314d8c80b912ba83db57fd26da19bfb7.tar.bz2 podman-6da97c86314d8c80b912ba83db57fd26da19bfb7.zip |
Pod Volumes From Support
added support for a volumes from container. this flag just required movement of the volumes-from flag declaration
out of the !IsInfra block, and minor modificaions to container_create.go
Signed-off-by: cdoern <cdoern@redhat.com>
Diffstat (limited to 'libpod/pod_api.go')
-rw-r--r-- | libpod/pod_api.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpod/pod_api.go b/libpod/pod_api.go index 05349aff5..4ae02fb40 100644 --- a/libpod/pod_api.go +++ b/libpod/pod_api.go @@ -668,6 +668,7 @@ func (p *Pod) Inspect() (*define.InspectPodData, error) { Mounts: inspectMounts, Devices: devices, BlkioDeviceReadBps: deviceLimits, + VolumesFrom: p.VolumesFrom(), } return &inspectData, nil |