15 lines
485 B
YAML
15 lines
485 B
YAML
services:
|
|
codex-agent-manager:
|
|
build: .
|
|
image: codex-agent-manager:local
|
|
ports:
|
|
- "0.0.0.0:18083:18083"
|
|
environment:
|
|
CODEX_HOME: /codex-home
|
|
HTTP_ADDR: 0.0.0.0:18083
|
|
STATIC_DIR: /app/web/dist
|
|
WORKSPACE_ROOT: /Users/yoilun/Code/codex-agent-manager
|
|
volumes:
|
|
- ${CODEX_HOME:-/Users/yoilun/.codex}:/codex-home
|
|
- ${CODEX_AGENT_MANAGER_PROJECT:-/Users/yoilun/Code/codex-agent-manager}:/Users/yoilun/Code/codex-agent-manager:ro
|