Initial commit

This commit is contained in:
2026-04-14 03:44:59 +02:00
commit a11872a556
32 changed files with 589 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
services:
database:
image: postgres:18
ports:
- 5432:5432
environment:
- TZ=Europe/Amsterdam
- PGTZ=Europe/Amsterdam
- POSTGRES_PASSWORD=rustiscool
healthcheck:
test: ["CMD-SHELL", "pg_isready -U postgres -d postgres"]
interval: 10s
retries: 5
start_period: 10s
timeout: 10s