make-quant-py/docker-compose.yml
Ayuriel 7e177c35f3
Some checks failed
Docker Build and Deploy / build-and-push (push) Failing after 22s
Docker Build and Deploy / deploy (push) Has been skipped
feat: requirements.txt 수정
2025-03-31 14:48:30 +09:00

21 lines
539 B
YAML

version: '3'
services:
quant-app:
image: ayuriel.duckdns.org/quant/make-quant-py:latest
container_name: quant-manager
ports:
- "56978: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