Files
linkster-backend/docker-compose.yml
2026-04-19 19:54:11 +02:00

15 lines
356 B
YAML

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