Initial commit: Domain model, Infrastructure, and Database setup

This commit is contained in:
steinhelge
2025-11-23 15:44:46 +01:00
commit 0661bebd87
49 changed files with 5857 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
services:
db:
image: postgres:15-alpine
container_name: hospitality-db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: hospitality
ports:
- "5432:5432"
volumes:
- postgres_data:/var/lib/postgresql/data
volumes:
postgres_data: