Update Dockerfile

This commit is contained in:
Alexandre
2025-01-06 09:45:43 +01:00
committed by GitHub
parent a11338888d
commit 64c0e3c3f6

View File

@@ -40,7 +40,7 @@ ENV APACHE_RUN_USER=www-data \
# Global variables
ENV WEBTREES_HOME="/var2/www/webtrees"
WORKDIR $WEBTREES_HOME
# hadolint ignore=DL4006
# hadolint ignore=DL4006, SC2016
RUN \
# Change data location
grep -rl "/var/www/webtrees" /etc | xargs sed -i 's|/var/www/webtrees|/var2/www/webtrees|g' \
@@ -128,6 +128,9 @@ LABEL \
# 6 Healthcheck #
#################
# Avoid spamming logs with Apache
RUN if [ -d /etc/apache2/sites-available ]; then for file in /etc/apache2/sites-*/*.conf; do sed -i '/<VirtualHost/a # Match requests with the custom User-Agent "HealthCheck" \n SetEnvIf User-Agent "HealthCheck" dontlog \n # Exclude matching requests from access logs \n CustomLog ${APACHE_LOG_DIR}/access.log combined env=!dontlog' "$file"; done; fi
ENV HEALTH_PORT="80" \
HEALTH_URL=""
HEALTHCHECK \