diff options
| -rw-r--r-- | Docker/Dockerfile | 12 | ||||
| -rw-r--r-- | Docker/Dockerfile-QEMU-ARM | 12 | ||||
| -rwxr-xr-x | Docker/entrypoint.sh | 2 |
3 files changed, 13 insertions, 13 deletions
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 && \ diff --git a/Docker/Dockerfile-QEMU-ARM b/Docker/Dockerfile-QEMU-ARM index 27e55bf9a..58459cf37 100644 --- a/Docker/Dockerfile-QEMU-ARM +++ b/Docker/Dockerfile-QEMU-ARM @@ -41,12 +41,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 && \ diff --git a/Docker/entrypoint.sh b/Docker/entrypoint.sh index 6420ca219..18fc88f92 100755 --- a/Docker/entrypoint.sh +++ b/Docker/entrypoint.sh @@ -12,7 +12,7 @@ if [ -n "$LISTEN" ]; then fi if [ -n "$OIDC_ENABLED" ] && [ "$OIDC_ENABLED" -ne 0 ]; then - a2enmod auth_openidc + a2enmod -q auth_openidc fi if [ -n "$CRON_MIN" ]; then |
