15 lines
356 B
YAML
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
|