Some minor updates

This commit is contained in:
2026-05-06 12:49:53 +02:00
parent d41b31b5af
commit 72f126c7da
4 changed files with 18 additions and 2 deletions

14
data/compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
services:
postgres:
image: postgres:latest
container_name: postgres_ticket
restart: unless-stopped
ports:
- 5432:5432
environment:
- POSTGRES_PASSWORD=tickets
volumes:
- pg_data:/var/lib/postregsql/pg_data
volumes:
pg_data: