File size: 288 Bytes
81e48fa
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
version: '3.8'

services:
  streamlit-gpt4o:
    build: .
    ports:
      - "${APP_PORT:-7860}:${APP_PORT:-7860}"
    command: [
      "streamlit", "run",
      "/home/appuser/streamlit-gpt4o/app.py",
      "--server.port", "${APP_PORT:-7860}",
      "--server.address", "0.0.0.0"
    ]