CoolFace
Apppublic

Navya-Sree/Ham_research_AI

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
docker-compose.yml21 linesDownload Raw Back to root
1# File 6: docker-compose.yml (Optional - for local testing)2version: '3.8'3 4services:5  ham-research-ai:6    build: .7    ports:8      - "7860:7860"9    environment:10      - STREAMLIT_SERVER_HEADLESS=true11      - STREAMLIT_SERVER_PORT=786012      - STREAMLIT_SERVER_ADDRESS=0.0.0.013    volumes:14      - ./data:/app/data  # Optional: for persistent data15    restart: unless-stopped16    healthcheck:17      test: ["CMD", "curl", "-f", "http://localhost:7860/_stcore/health"]18      interval: 30s19      timeout: 10s20      retries: 321      start_period: 40s