GitPulse-Intelligence / docker-compose.yml
DIVYANSHI SINGH
πŸš€ Initial Commit: GitPulse
fcfc3c8
raw
history blame contribute delete
432 Bytes
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