Files
streamlit-agent/docker-compose.yml
ma-raza 24f3d54e52 Feature/docker (#12)
* Added Docker Support

* Docker Support Added

* Address few changes in `README.md` & `Dockerfile`

* Dockerfile port changed to 8051
2023-07-28 19:31:16 -07:00

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