Spaces:
Build error
Build error
File size: 316 Bytes
4398510 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
version: "3"
services:
app:
build: ./
ports:
- 8501:8501
command: "streamlit run ./src/app.py"
nginx:
image: "nginx:stable"
depends_on:
- app
links:
- app
restart: always
ports:
- 80:80
volumes:
- "./deployment/nginx.conf:/etc/nginx/nginx.conf" |