File size: 452 Bytes
7c96b6d
 
0a3f8e8
 
 
 
7c96b6d
 
 
 
 
 
 
 
 
 
 
 
 
0a3f8e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
services:
  open-webui:
    build:
      context: .
      dockerfile: Dockerfile
    image: open-webui:latest
    container_name: open-webuii
    restart: always
    ports:
      - "3000:8080"
    environment:
      - ENV=production
      - WEBUI_AUTH=false
      - OPENAI_API_BASE_URL=https://api.deepinfra.com/v1/openai
      - OPENAI_API_KEY=Qkg36ZyeOllw5Y7ARp3Xr7Gmq8JmR13B
    volumes:
      - open-webui:/app/backend/data

volumes:
  open-webui: