21 lines
539 B
YAML
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 |