From 644427b9b1a0cf525b84f4a2aac2d6a5a2f55045 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Wed, 14 Jun 2023 15:18:26 +0200 Subject: Docker quiet Apache a2enmod (#5464) Quiet output for a2enmod, a2dismod, a2disconf, a2dissite, a2ensite to avoid many messages the following, which are not even relevant because Apache is not yet started at this stage: ``` To activate the new configuration, you need to run: systemctl restart apache2 ``` Related to https://github.com/FreshRSS/FreshRSS/pull/5463 --- Docker/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'Docker/Dockerfile') diff --git a/Docker/Dockerfile b/Docker/Dockerfile index cb35cfa60..4b6979993 100644 --- a/Docker/Dockerfile +++ b/Docker/Dockerfile @@ -35,12 +35,12 @@ LABEL \ org.opencontainers.image.vendor="FreshRSS" \ org.opencontainers.image.version="$FRESHRSS_VERSION" -RUN a2dismod -f alias autoindex negotiation status && \ - a2dismod auth_openidc && \ - a2enmod deflate expires headers mime remoteip setenvif && \ - a2disconf '*' && \ - a2dissite '*' && \ - a2ensite 'FreshRSS*' +RUN a2dismod -q -f alias autoindex negotiation status && \ + a2dismod -q auth_openidc && \ + a2enmod -q deflate expires headers mime remoteip setenvif && \ + a2disconf -q '*' && \ + a2dissite -q '*' && \ + a2ensite -q 'FreshRSS*' RUN sed -r -i "/^\s*(CustomLog|ErrorLog|Listen) /s/^/#/" /etc/apache2/apache2.conf && \ sed -r -i "/^\s*Listen /s/^/#/" /etc/apache2/ports.conf && \ -- cgit v1.2.3