fix: final YAML syntax repair for docker-compose.yml (v1.15.14)
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 8s
Build & Deploy / 🏗️ Build (push) Failing after 20m27s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s

This commit is contained in:
2026-04-11 19:33:25 +02:00
parent 8b80af3d1a
commit f8eec731c0

View File

@@ -37,12 +37,6 @@ services:
# Middlewares
- "traefik.http.middlewares.${PROJECT_NAME}-ratelimit.ratelimit.average=100"
- "traefik.http.middlewares.${PROJECT_NAME}-ratelimit.ratelimit.burst=200"
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/ || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
- "traefik.http.middlewares.${PROJECT_NAME}-ratelimit.ratelimit.burst=50"
# Gatekeeper Router (Path-based)
@@ -60,6 +54,12 @@ services:
# Forwarded Headers
- "traefik.http.middlewares.${PROJECT_NAME}-forward.headers.customrequestheaders.X-Forwarded-Proto=https"
- "traefik.http.middlewares.${PROJECT_NAME}-forward.headers.customrequestheaders.X-Forwarded-Ssl=on"
healthcheck:
test: ["CMD-SHELL", "wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/ || exit 1"]
interval: 10s
timeout: 5s
retries: 5
start_period: 20s
gatekeeper:
profiles: ["gatekeeper"]