5 Commits

Author SHA1 Message Date
3e25010062 chore: publish 2.2.0+2025.8.0 release
All checks were successful
continuous-integration/drone/tag Build is passing
continuous-integration/drone/push Build is passing
2025-10-11 21:07:04 +02:00
93b40b1e29 fix: update cron template version
All checks were successful
continuous-integration/drone/push Build is passing
Fixes a regression introduced in d67f375d47
2025-10-11 21:02:34 +02:00
f277fe7070 Merge pull request 'fix(cron): make sure cron container only returns one container id' (#1) from kolaente/pretix:fix/cron into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #1
Reviewed-by: simon <simon@noreply.git.coopcloud.tech>
2025-10-02 12:06:03 +00:00
13077bb2a4 Merge pull request 'fix: remove languages from set' (#3) from feat/lang into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #3
2025-10-02 11:20:44 +00:00
d67f375d47 fix: 2025-09-29 20:20:28 +00:00
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
export PRETIX_CONFIG_VERSION=v2
export CRON_ENTRYPOINT_VERSION=v1
export CRON_ENTRYPOINT_VERSION=v2
export DB_ENTRYPOINT_VERSION=v2
export PG_BACKUP_VERSION=v1

View File

@ -3,7 +3,7 @@ version: "3.8"
services:
app:
image: 'pretix/standalone:2025.5.0'
image: 'pretix/standalone:2025.8.0'
networks:
- proxy
- internal
@ -26,7 +26,7 @@ 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.1.0+2025.5.0"
- "coop-cloud.${STACK_NAME}.version=2.2.0+2025.8.0"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost/healthcheck"]
interval: 30s

View File

@ -1,3 +1,3 @@
#!/bin/sh
echo '15,45 * * * * docker exec $(docker ps -qf 'name=${STACK_NAME}_app') pretix runperiodic' | crontab - && crond -f -d 8
echo '15,45 * * * * docker exec $(docker ps -qf 'name=^${STACK_NAME}_app') pretix runperiodic' | crontab - && crond -f -d 8