diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-14 13:14:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 13:14:11 -0400 |
commit | 6a34045c670b3f0184b4ba88faeb11bb4a58c747 (patch) | |
tree | 856e9ffd0eba7b03c7ee02987f7f61b966eb8ca1 /libpod/container_config.go | |
parent | 65b1ff25a3444f16c9b0524f8a02cd6e56976e2b (diff) | |
parent | a55e2a00fcb82485333eeec55aa2eaee338782d7 (diff) | |
download | podman-6a34045c670b3f0184b4ba88faeb11bb4a58c747.tar.gz podman-6a34045c670b3f0184b4ba88faeb11bb4a58c747.tar.bz2 podman-6a34045c670b3f0184b4ba88faeb11bb4a58c747.zip |
Merge pull request #11170 from flouthoc/support-rootfs-overlay
rootfs: Add support for rootfs-overlay.
Diffstat (limited to 'libpod/container_config.go')
-rw-r--r-- | libpod/container_config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/container_config.go b/libpod/container_config.go index b80b23c25..a2c989a1a 100644 --- a/libpod/container_config.go +++ b/libpod/container_config.go @@ -107,6 +107,8 @@ type ContainerRootFSConfig struct { // as the container's root. // Conflicts with RootfsImageID. Rootfs string `json:"rootfs,omitempty"` + // RootfsOverlay tells if rootfs has to be mounted as an overlay + RootfsOverlay bool `json:"rootfs_overlay,omitempty"` // ShmDir is the path to be mounted on /dev/shm in container. // If not set manually at creation time, Libpod will create a tmpfs // with the size specified in ShmSize and populate this with the path of |