Files
inizio-web-search/docker-compose.yml
2025-10-20 12:50:03 +02:00

18 lines
395 B
YAML

version: "3.8"
services:
web:
build: .
ports:
- "8050:5000"
environment:
- FLASK_ENV=development
- SERPAPI_KEY=${SERPAPI_KEY:-}
volumes:
- .:/app
healthcheck:
test: ["CMD-SHELL", "pytest -q tests/test_scraper.py::test_get_google_first_page_maps_output || exit 1"]
interval: 1m
timeout: 20s
retries: 3
start_period: 20s