3 Commits

Author SHA1 Message Date
e86398d464 fix postgres healthcheck 2026-01-28 01:32:08 +01:00
653a26cca0 chore: publish 3.1.1+6.5.2-22 release
All checks were successful
continuous-integration/drone/tag Build is passing
2025-10-29 17:40:15 +01:00
31901f57ae add memory limit for railsserver 2025-10-29 17:39:48 +01:00

View File

@ -134,7 +134,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=3.1.0+6.5.2-22"
- "coop-cloud.${STACK_NAME}.version=3.1.1+6.5.2-22"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080"]
@ -168,7 +168,7 @@ services:
secrets:
- db_password
healthcheck:
test: ["CMD", "pg_isready", "-U", "zammad"]
test: ["CMD", "pg_isready", "-U", "zammad", "-d", "zammad_production"]
interval: 30s
timeout: 10s
retries: 10
@ -183,6 +183,14 @@ services:
timeout: 10s
retries: 10
start_period: 5m
deploy:
restart_policy:
condition: on-failure
resources:
limits:
memory: 4G
reservations:
memory: 2G
zammad-redis:
image: redis:7.4.6-alpine