This commit is contained in:
2026-04-11 12:12:07 +02:00
parent 3bc6e2e080
commit 5b3c5ebb2f
92 changed files with 10948 additions and 35 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
services:
rental-manager:
build: .
container_name: rental-manager
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- ./data:/app/data # SQLite + documents persistants
environment:
- PORT=8080
- TZ=Europe/Paris
healthcheck:
test: ["CMD", "wget", "-qO-", "http://localhost:8080/api/properties"]
interval: 30s
timeout: 5s
retries: 3