circulartext commited on
Commit
804cf68
1 Parent(s): 0ca1319

Create docker-compose.yml

Browse files
Files changed (1) hide show
  1. docker-compose.yml +14 -0
docker-compose.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ version: '3.8'
2
+
3
+ services:
4
+ langchain-streamlit-demo:
5
+ build: .
6
+ image: langchain-streamlit-demo:latest
7
+ env_file:
8
+ - .env
9
+ ports:
10
+ - "${APP_PORT:-7860}:${APP_PORT:-7860}"
11
+ command: [
12
+ "/usr/local/bin/entrypoint.sh",
13
+ "${USERNAME:-default_user}"
14
+ ]