16 lines
358 B
YAML
16 lines
358 B
YAML
services:
|
|
studywatch:
|
|
image: git.magnusku.de/magnus/studywatch:latest
|
|
container_name: studywatch
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "5000:5000"
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5000/api/health"]
|
|
interval: 2m
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|