diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-04-29 16:59:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 16:59:37 +0200 |
commit | d1196d08d0c931885cf383ff4e568a855e8e4673 (patch) | |
tree | b7d6ad5b6492106b38854a52d2c4343c6c84e46a /contrib/podmanimage/stable/manual/Containerfile | |
parent | 620baafa0790b857b089f48c6539f78affdb546d (diff) | |
parent | 9229312f2aa77eb30ed8a295d3a0449bcb369cc4 (diff) | |
download | podman-d1196d08d0c931885cf383ff4e568a855e8e4673.tar.gz podman-d1196d08d0c931885cf383ff4e568a855e8e4673.tar.bz2 podman-d1196d08d0c931885cf383ff4e568a855e8e4673.zip |
Merge pull request #6010 from TomSweeneyRedHat/dev/tsweeney/ctrimagefixes
Update podmanimage files to adjust perms on containers.conf for rootless
Diffstat (limited to 'contrib/podmanimage/stable/manual/Containerfile')
-rw-r--r-- | contrib/podmanimage/stable/manual/Containerfile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/podmanimage/stable/manual/Containerfile b/contrib/podmanimage/stable/manual/Containerfile index afc4f5ffd..4375ea4f4 100644 --- a/contrib/podmanimage/stable/manual/Containerfile +++ b/contrib/podmanimage/stable/manual/Containerfile @@ -26,10 +26,11 @@ FROM fedora:latest COPY /tmp/podman-1.7.0-3.fc30.x86_64.rpm /tmp RUN yum -y install /tmp/podman-1.7.0-3.fc30.x86_64.rpm fuse-overlayfs --exclude container-selinux; rm -rf /var/cache /var/log/dnf* /var/log/yum.* /tmp/podman*.rpm -# Adjust storage.conf to enable Fuse storage. -RUN sed -i -e 's|^#mount_program|mount_program|g' -e '/additionalimage.*/a "/var/lib/shared",' /etc/containers/storage.conf +ADD https://raw.githubusercontent.com/containers/libpod/master/contrib/podmanimage/stable/containers.conf /etc/containers/ + +# chmod containers.conf and adjust storage.conf to enable Fuse storage. +RUN chmod 644 /etc/containers/containers.conf; sed -i -e 's|^#mount_program|mount_program|g' -e '/additionalimage.*/a "/var/lib/shared",' /etc/containers/storage.conf RUN mkdir -p /var/lib/shared/overlay-images /var/lib/shared/overlay-layers; touch /var/lib/shared/overlay-images/images.lock; touch /var/lib/shared/overlay-layers/layers.lock -ADD https://raw.githubusercontent.com/containers/libpod/master/contrib/podmanimage/stable/containers.conf /etc/containers/ ENV _CONTAINERS_USERNS_CONFIGURED="" |