make-quant-py/docker-compose.yml

21 lines
539 B
YAML
Raw Normal View History

2025-03-31 12:35:54 +09:00
version: '3'
services:
quant-app:
2025-03-31 14:48:30 +09:00
image: ayuriel.duckdns.org/quant/make-quant-py:latest
2025-03-31 12:35:54 +09:00
container_name: quant-manager
ports:
2025-03-31 14:48:30 +09:00
- "56978:8501"
2025-03-31 12:35:54 +09:00
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