-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (30 loc) · 874 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (30 loc) · 874 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
29
30
31
services:
overture:
user: "0:0"
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:3000"
env_file:
- .env
environment:
OVERTURE_BIND_HOST: 0.0.0.0
OVERTURE_INTERNAL_ORIGIN: http://127.0.0.1:3000
PORT: 3000
OVERTURE_ROOT: /app
CODEX_HOME: /app/.overture/codex-home
OVERTURE_CODEX_AUTH_SOURCE: /codex-host/auth.json
OPENAI_API_KEY: ${OPENAI_API_KEY:-}
volumes:
- ./.overture:/app/.overture
- ./.overture/data:/app/.overture-host-data:ro
- overture_data:/app/.overture/data
- overture_workspaces:/app/.overture/workspaces
- ${OVERTURE_CODEX_AUTH_SOURCE_DIR:-${HOME}/.codex}:/codex-host:ro
- /var/run/docker.sock:/var/run/docker.sock
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
overture_data:
overture_workspaces: