diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-02-23 10:11:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-23 10:11:28 -0500 |
commit | 1702cbc6917f431bcc65d6c5bdc6fcf99231977a (patch) | |
tree | 2b138dda345970e5898593162c38e10d4909fabd /libpod/container.go | |
parent | 96fc9d983e0fc5bae48c3cec3acce86cdb6e1059 (diff) | |
parent | 874f2327e6ca963edda7cc46819d51048d3d19a8 (diff) | |
download | podman-1702cbc6917f431bcc65d6c5bdc6fcf99231977a.tar.gz podman-1702cbc6917f431bcc65d6c5bdc6fcf99231977a.tar.bz2 podman-1702cbc6917f431bcc65d6c5bdc6fcf99231977a.zip |
Merge pull request #8349 from EduardoVega/7778-chowning-based-on-uid
Add U volume flag to chown source volumes
Diffstat (limited to 'libpod/container.go')
-rw-r--r-- | libpod/container.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/container.go b/libpod/container.go index 9841bddf7..ee6e243ac 100644 --- a/libpod/container.go +++ b/libpod/container.go @@ -236,6 +236,8 @@ type ContainerOverlayVolume struct { Dest string `json:"dest"` // Source specifies the source path of the mount. Source string `json:"source,omitempty"` + // Options holds overlay volume options. + Options []string `json:"options,omitempty"` } // ContainerImageVolume is a volume based on a container image. The container |