From 7b8b8c0c3ed17793b3b69f1a60c642e62cd2888e Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Jun 12 2019 19:21:09 +0000 Subject: Dockerfile: set app name in fedora messaging config As requested by the fedora messaging documentation. --- diff --git a/Dockerfile b/Dockerfile index 15c9197..4d96023 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,9 @@ WORKDIR /work # I expect this to only be running in one place. RUN sed -e "s/[0-9a-f]\{8\}-[0-9a-f]\{4\}-[0-9a-f]\{4\}-[0-9a-f]\{4\}-[0-9a-f]\{12\}/$(uuidgen)/g" /etc/fedora-messaging/fedora.toml > /work/my_config.toml +# Set the Application Name +RUN sed -i 's|Example Application|Compose Tracker: https://pagure.io/releng/compose-tracker|' /work/my_config.toml + # Lower log levels to WARNING level RUN sed -i 's/INFO/WARNING/' /work/my_config.toml