File size: 423 Bytes
c21a491
 
 
 
 
 
 
 
 
 
 
9946cb7
c21a491
9946cb7
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: '3.8'

services:
  streamlit-chat:
    image: streamlit-chat:latest
    build: .
    env_file:
      - .env
    ports:
      - "8000:8000"
    volumes:
      - .:/home/appuser/app:rw
    working_dir: /home/appuser/app/
    command: [
      "python", "-m",
      "streamlit", "run",
      "/home/appuser/app/langchain-streamlit-demo/app.py",
      "--server.port", "8000",
      "--server.address", "0.0.0.0"
    ]