New_Aggregator_v1 / docker-compose.yml
saran14's picture
Initial commit: Pakistani News Aggregator Flask App
796e8b5
raw
history blame contribute delete
406 Bytes
version: '3.8'
services:
pakistani-news-app:
build: .
ports:
- "5000:5000"
environment:
- FLASK_ENV=production
- FLASK_APP=app.py
volumes:
- ./data:/app/data # Persist database
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:5000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 40s