Docker tweaks for deployment
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-01-30 20:52:09 -03:00
parent 46e45581fe
commit 1888885ffd
2 changed files with 3 additions and 3 deletions

View File

@@ -33,9 +33,9 @@ RUN chown -R nginx:nginx /usr/share/nginx/html && \
# Expose port 80 # Expose port 80
EXPOSE 80 EXPOSE 80
# Health check # Health check (127.0.0.1 to avoid IPv6 localhost when nginx listens on IPv4 only)
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD wget --quiet --tries=1 --spider http://localhost/ || exit 1 CMD wget --quiet --tries=1 --spider http://127.0.0.1/ || exit 1
# Run nginx in foreground # Run nginx in foreground
CMD ["nginx", "-g", "daemon off;"] CMD ["nginx", "-g", "daemon off;"]

View File

@@ -10,7 +10,7 @@ services:
pull_policy: always pull_policy: always
restart: unless-stopped restart: unless-stopped
healthcheck: healthcheck:
test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://localhost/"] test: ["CMD", "wget", "--quiet", "--tries=1", "--spider", "http://127.0.0.1/"]
interval: 30s interval: 30s
timeout: 3s timeout: 3s
start_period: 5s start_period: 5s