mirror of
https://github.com/langchain-ai/streamlit-agent.git
synced 2026-07-18 10:05:00 -04:00
24f3d54e52
* Added Docker Support * Docker Support Added * Address few changes in `README.md` & `Dockerfile` * Dockerfile port changed to 8051
10 lines
282 B
YAML
10 lines
282 B
YAML
version: '3'
|
|
services:
|
|
langchain-streamlit-agent:
|
|
image: langchain-streamlit-agent:latest
|
|
build: ./app
|
|
command: streamlit run streamlit_agent/chat_pandas_df.py --server.port 8051
|
|
volumes:
|
|
- ./streamlit_agent/:/app/streamlit_agent
|
|
ports:
|
|
- 8051:8051 |