Spaces:
Running
Running
| version: '3.8' | |
| services: | |
| app: | |
| build: . | |
| container_name: github-talent-finder | |
| ports: | |
| - "8000:8000" | |
| env_file: | |
| - .env | |
| volumes: | |
| # Mount the local cache directory to the host to persist analysis results | |
| - ./.local_cache:/app/.local_cache | |
| restart: always | |
| healthcheck: | |
| test: ["CMD", "curl", "-f", "http://localhost:8000/"] | |
| interval: 30s | |
| timeout: 10s | |
| retries: 3 | |