summaryrefslogtreecommitdiff
path: root/contrib/podmanimage/upstream
diff options
context:
space:
mode:
authorTomSweeneyRedHat <tsweeney@redhat.com>2019-09-06 19:55:20 -0400
committerTomSweeneyRedHat <tsweeney@redhat.com>2019-09-06 19:57:53 -0400
commit8ad6f25db8f702dcf5456bbb583cc4579c55576c (patch)
tree3ad52833154ebcd6a46a5591e51601dda1988ae1 /contrib/podmanimage/upstream
parent30cbb0091515a7f802f0f3f3ee486be6ff98f645 (diff)
downloadpodman-8ad6f25db8f702dcf5456bbb583cc4579c55576c.tar.gz
podman-8ad6f25db8f702dcf5456bbb583cc4579c55576c.tar.bz2
podman-8ad6f25db8f702dcf5456bbb583cc4579c55576c.zip
Turn off journald in podmanimages on quay.io
In the Dockerfiles that are used to build the podman images on quay.io, we were changing the events_logger from journald to file in libpod.conf, but we weren't enabling it as we didn't remove the comment. This corrects that and addresses: #3464 Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
Diffstat (limited to 'contrib/podmanimage/upstream')
-rw-r--r--contrib/podmanimage/upstream/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/podmanimage/upstream/Dockerfile b/contrib/podmanimage/upstream/Dockerfile
index 3583e1c54..82b88b50b 100644
--- a/contrib/podmanimage/upstream/Dockerfile
+++ b/contrib/podmanimage/upstream/Dockerfile
@@ -62,7 +62,7 @@ RUN dnf -y install --exclude container-selinux \
mkdir -p /usr/share/containers; \
cp $GOPATH/src/github.com/containers/libpod/libpod.conf /usr/share/containers; \
# Adjust libpod.conf to write logging to a file
- sed -i 's/events_logger = "journald"/events_logger = "file"/g' /usr/share/containers/libpod.conf; \
+ sed -i 's/# events_logger = "journald"/events_logger = "file"/g' /usr/share/containers/libpod.conf; \
rm -rf /root/podman/*; \
dnf -y remove git golang go-md2man make; \
dnf clean all;