2 Commits

Author SHA1 Message Date
57b2b21353 increase healthcheck retries
Some checks failed
continuous-integration/drone/push Build is failing
2025-12-23 14:39:33 +01:00
8b48069197 chore: publish 2.3.0+2025.10.0 release
Some checks failed
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is failing
2025-12-03 23:34:07 +01:00

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: 'pretix/standalone:2025.8.0'
image: "pretix/standalone:2025.10.0"
networks:
- proxy
- internal
@ -26,12 +26,12 @@ services:
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "coop-cloud.${STACK_NAME}.version=2.2.0+2025.8.0"
- "coop-cloud.${STACK_NAME}.version=2.3.0+2025.10.0"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/healthcheck"]
interval: 30s
timeout: 10s
retries: 10
retries: 30
start_period: 1m
db:
@ -55,16 +55,21 @@ services:
mode: 0555
entrypoint: /docker-entrypoint.sh
healthcheck:
test: ["CMD-SHELL", "[ -f $${HEALTHCHECK_MARKER} ] || pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}"]
interval: 10s
test:
[
"CMD-SHELL",
"[ -f $${HEALTHCHECK_MARKER} ] || pg_isready -d $${POSTGRES_DB} -U $${POSTGRES_USER}",
]
interval: 30s
timeout: 5s
retries: 5
retries: 20
start_period: 1m
deploy:
labels:
backupbot.backup: "${ENABLE_BACKUPS:-true}"
backupbot.backup.pre-hook: "/pg_backup.sh backup"
backupbot.backup.pre-hook: "/pg_backup.sh backup"
backupbot.backup.volumes.postgres.path: "backup.sql"
backupbot.restore.post-hook: '/pg_backup.sh restore'
backupbot.restore.post-hook: "/pg_backup.sh restore"
redis:
image: redis:8.0.2-alpine
@ -72,9 +77,10 @@ services:
- "redis:/data"
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 3s
interval: 20s
timeout: 5s
retries: 20
start_period: 1m
networks:
- internal
@ -84,8 +90,7 @@ services:
- STACK_NAME=${STACK_NAME}
volumes:
- /var/run/docker.sock:/var/run/docker.sock
entrypoint:
/entrypoint.sh
entrypoint: /entrypoint.sh
configs:
- source: cron_entrypoint
target: /entrypoint.sh
@ -117,7 +122,6 @@ networks:
external: true
internal:
secrets:
db_password:
external: true