File size: 381 Bytes
c21a491
 
 
 
 
 
 
 
 
 
 
 
 
991fc4e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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/
    entrypoint: ["python", "-m", "streamlit", "run", "${APP}", "--server.port", "8000", "--server.enableCORS", "false", "--server.address", "0.0.0.0"]