mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-06-17 12:59:13 +02:00
Update Dockerfile
This commit is contained in:
@@ -115,27 +115,4 @@ LABEL \
|
|||||||
# 6 Healthcheck #
|
# 6 Healthcheck #
|
||||||
#################
|
#################
|
||||||
|
|
||||||
# Avoid spamming logs
|
# Upstream
|
||||||
# hadolint ignore=SC2016
|
|
||||||
RUN \
|
|
||||||
# Handle Apache configuration
|
|
||||||
if [ -d /etc/apache2/sites-available ]; then \
|
|
||||||
for file in /etc/apache2/sites-*/*.conf; do \
|
|
||||||
sed -i '/<VirtualHost/a \ \n # 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 && \
|
|
||||||
\
|
|
||||||
# Handle Nginx configuration
|
|
||||||
if [ -f /etc/nginx/nginx.conf ]; then \
|
|
||||||
awk '/http \{/{print; print "map $http_user_agent $dontlog {\n default 0;\n \"~*HealthCheck\" 1;\n}\naccess_log /var/log/nginx/access.log combined if=$dontlog;"; next}1' /etc/nginx/nginx.conf > /etc/nginx/nginx.conf.new && \
|
|
||||||
mv /etc/nginx/nginx.conf.new /etc/nginx/nginx.conf; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
ENV HEALTH_PORT="3001" \
|
|
||||||
HEALTH_URL="/health"
|
|
||||||
HEALTHCHECK \
|
|
||||||
--interval=5s \
|
|
||||||
--retries=5 \
|
|
||||||
--start-period=30s \
|
|
||||||
--timeout=25s \
|
|
||||||
CMD pgrep -x filebrowser &>/dev/null || exit 1; curl -A "HealthCheck: Docker/1.0" -s -f "http://127.0.0.1:${HEALTH_PORT}${HEALTH_URL}" &>/dev/null || exit 1
|
|
||||||
|
|||||||
Reference in New Issue
Block a user