version: '3.8' services: mock-api: build: . ports: - "5002:5000" volumes: - ./api_data:/app/api_data environment: - PYTHONUNBUFFERED=1 restart: unless-stopped healthcheck: test: ["CMD", "curl", "-f", "http://localhost:5000/health"] interval: 30s timeout: 10s retries: 3 start_period: 40s volumes: api_data: