version: '3' services: quant-app: image: ${GITEA_REGISTRY_URL}/quant/make-quant-py:latest container_name: quant-manager ports: - "8501:8501" volumes: - ./src/config:/app/src/config restart: unless-stopped environment: - STREAMLIT_SERVER_PORT=8501 - STREAMLIT_SERVER_ADDRESS=0.0.0.0 - STREAMLIT_BROWSER_GATHER_USAGE_STATS=false healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8501/"] interval: 30s timeout: 10s retries: 3 start_period: 40s