ResNet50-P3 / docker-compose.yml
chrisnguyenx's picture
Upload folder using huggingface_hub
c4b649d verified
Raw
History Blame Contribute Delete
374 Bytes
version: '3.8'
services:
retina_ai_service:
build:
context: .
dockerfile: Dockerfile
container_name: retina_ai_app
ports:
- "8000:8000"
restart: always
environment:
- PYTHONUNBUFFERED=1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/api/info"]
interval: 30s
timeout: 10s
retries: 3