19 lines
449 B
YAML
19 lines
449 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
mixcloud-rss:
|
|
build: .
|
|
container_name: mixcloud-rss-generator
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./cache:/app/cache
|
|
environment:
|
|
- SECRET_KEY=${SECRET_KEY:-your-secret-key-here}
|
|
restart: unless-stopped
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:5000/health"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
start_period: 40s |