18 lines
307 B
YAML
18 lines
307 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
bluemastofeed:
|
|
build: .
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
|
interval: 1m
|
|
timeout: 5s
|
|
retries: 3
|
|
start_period: 10s
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./data:/data
|
|
|