This commit is contained in:
2026-05-11 12:23:57 +02:00
commit 72337e801c
34 changed files with 1573 additions and 0 deletions

14
compose.yaml Normal file
View File

@@ -0,0 +1,14 @@
services:
db:
image: postgres
restart: always
ports:
- 5432:5432
environment:
POSTGRES_USER: root
POSTGRES_PASSWORD: mysecretpassword
POSTGRES_DB: local
volumes:
- pgdata:/var/lib/postgresql
volumes:
pgdata: