Spaces:
Running
Running
File size: 287 Bytes
804cf68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
version: '3.8'
services:
langchain-streamlit-demo:
build: .
image: langchain-streamlit-demo:latest
env_file:
- .env
ports:
- "${APP_PORT:-7860}:${APP_PORT:-7860}"
command: [
"/usr/local/bin/entrypoint.sh",
"${USERNAME:-default_user}"
]
|