Complete Planner session management (tasks 4.2, 4.6, 4.7) (#9)

This commit is contained in:
Ullrich Schäfer 2026-03-22 23:18:36 +01:00 committed by GitHub
parent a9a6b27af4
commit 6a3e566438
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 201 additions and 40 deletions

19
docker-compose.dev.yml Normal file
View file

@ -0,0 +1,19 @@
services:
postgres:
image: postgis/postgis:16-3.4
ports:
- "5432:5432"
environment:
POSTGRES_USER: trails
POSTGRES_PASSWORD: trails
POSTGRES_DB: trails
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U trails"]
interval: 5s
timeout: 5s
retries: 5
volumes:
pgdata: