-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
28 lines (28 loc) · 960 Bytes
/
docker-compose.yml
File metadata and controls
28 lines (28 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
services:
openchat:
#image: ghcr.io/openchatui/openchatui:latest
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
environment:
PORT: "3000"
HOSTNAME: "0.0.0.0"
AUTH_URL: "http://localhost:3000"
AUTH_SECRET: "UgtF847HMAq+HqcOz0LDntb/uLYB74ybFu2t0jXwBXU="
AUTH_TRUST_HOST: "true"
AUTH: "true"
DEBUG_AUTH: "true"
# DB: "sqlite"
# SQLITE_URL: "file:/app/data/openchat.db"
# DATABASE_URL: "postgresql://user:pass@host/db"
# NODE_ENV: "production"
# OPENAI_API_KEY: "sk-..."
# ANTHROPIC_API_KEY: "sk-ant-..."
# OLLAMA_URL: "http://localhost:11434"
# DRIVE_CLIENT_ID: "your-google-client-id"
# DRIVE_CLIENT_SECRET: "your-google-client-secret"
volumes:
- ./data:/app/data
restart: unless-stopped