use global paths

This commit is contained in:
kleines Filmröllchen 2026-02-15 23:22:31 +01:00
parent 74546b10fa
commit 1f87107d00
Signed by: filmroellchen
SSH key fingerprint: SHA256:UMhcHaeI+VGsiUL2Drpw3aj1iRiQUlx8nxZqUPvoaVw
2 changed files with 6 additions and 6 deletions

View file

@ -7,9 +7,9 @@ services:
- 127.0.0.1:1337:80 - 127.0.0.1:1337:80
volumes: volumes:
- ./pretix.cfg:/etc/pretix/pretix.cfg - ./pretix.cfg:/etc/pretix/pretix.cfg
- /var/run/postgresql:/var/run/postgresql - /var/run/postgresql:/run/postgresql
- ./valkey:/run/valkey - /run/valkey:/run/valkey
- ./memcached:/run/memcached - /run/memcached:/run/memcached
- /var/lib/pretix:/data - /var/lib/pretix:/data
environment: environment:
- TZ=Europe/Berlin - TZ=Europe/Berlin
@ -23,7 +23,7 @@ services:
- --threads=4 - --threads=4
- -s /run/memcached/memcached.sock - -s /run/memcached/memcached.sock
volumes: volumes:
- ./memcached:/run/memcached - /run/memcached:/run/memcached
valkey: valkey:
image: ghcr.io/valkey-io/valkey:alpine image: ghcr.io/valkey-io/valkey:alpine
restart: always restart: always
@ -31,4 +31,4 @@ services:
- /etc/valkey.conf - /etc/valkey.conf
volumes: volumes:
- ./valkey.conf:/etc/valkey.conf - ./valkey.conf:/etc/valkey.conf
- ./valkey:/run/valkey - /run/valkey:/run/valkey

View file

@ -11,7 +11,7 @@ default=en
timezone=UTC timezone=UTC
[database] [database]
backend=postgresql backend=postgresql
host = /var/run/postgresql host = /run/postgresql
name = pretix name = pretix
user = pretix user = pretix
[urls] [urls]