version: '3.8' services: stemwijzer: build: . image: stemwijzer:latest container_name: stemwijzer_app restart: unless-stopped ports: - "8501:8501" volumes: - ./data:/home/app/app/data:rw environment: - PYTHONPATH=/home/app/app - OPENROUTER_API_KEY - OTHER_SECRET healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8501/"] interval: 30s timeout: 3s retries: 3