File size: 351 Bytes
c21a491 d8ffc32 9946cb7 d8ffc32 9946cb7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
version: '3.8'
services:
streamlit-chat:
image: streamlit-chat:latest
build: .
ports:
- "${APP_PORT:-7860}:${APP_PORT:-7860}"
command: [
"python", "-m",
"streamlit", "run",
"/home/appuser/langchain-streamlit-demo/app.py",
"--server.port", "${APP_PORT:-7860}",
"--server.address", "0.0.0.0"
]
|