CoolFace
Apppublic

Azam-Rabiee/wealthy-estimator-api

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
docker-compose.yml18 linesDownload Raw Back to root
1version: '3.8'2 3services:4  wealth-estimator-api:5    build: .6    ports:7      - "8000:8000"8    environment:9      - DEVICE=cpu10    volumes:11      - ./data:/app/data12    restart: unless-stopped13    healthcheck:14      test: ["CMD", "curl", "-f", "http://localhost:8000/health"]15      interval: 30s16      timeout: 10s17      retries: 318      start_period: 40s