Initialer Commit

This commit is contained in:
2026-04-19 19:54:11 +02:00
commit afdda854d5
114 changed files with 424430 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@@ -0,0 +1,14 @@
services:
linkster-backend:
image: linkster-backend:latest
container_name: linkster-backend
restart: unless-stopped
ports:
- "8090:8090"
environment:
- SPRING_PROFILES_ACTIVE=prod
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8090/api/health"]
interval: 30s
timeout: 5s
retries: 3