streamlit-docker-example/docker-compose.yml

11 lines
298 B
YAML
Raw Permalink Normal View History

2020-01-29 13:25:26 +01:00
version: '3.7'
services:
app:
2020-01-29 13:25:26 +01:00
build: ./
2020-01-30 08:12:55 +01:00
command: streamlit run app/main.py --server.port 8501 --browser.gatherUsageStats false --server.enableCORS false
2020-01-29 13:25:26 +01:00
volumes:
- ./:/usr/src/app
ports:
- 8501:8501
image: yourstreamlitapp:latest