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