Skip to content

Commit 19d59b0

Browse files
committed
Replace default openai codex docker image
1 parent a6da98a commit 19d59b0

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This repository contains an initial v1 implementation with:
3232

3333
## Image Namespace
3434

35-
By default, agent images use the `vibepod` namespace for Claude (for example `vibepod/claude:latest`) and `nezhar` for other agents.
35+
By default, agent images use the `vibepod` namespace for Claude, Codex, and platform services, and `nezhar` for Gemini/OpenCode/Devstral/Auggie/Copilot.
3636

3737

3838
Current defaults are aligned to existing container repos:
@@ -43,7 +43,7 @@ Current defaults are aligned to existing container repos:
4343
- `devstral` -> `nezhar/devstral-cli:latest` ([repo](https://github.com/nezhar/devstral-container))
4444
- `auggie` -> `nezhar/auggie-cli:latest` ([repo](https://github.com/nezhar/auggie-container))
4545
- `copilot` -> `nezhar/copilot-cli:latest` ([repo](https://github.com/nezhar/copilot-container))
46-
- `codex` -> `nezhar/codex-cli:latest` ([repo](https://github.com/nezhar/codex-container))
46+
- `codex` -> `vibepod/codex:latest`
4747
- `datasette` -> `vibepod/datasette:latest`
4848
- `proxy` -> `vibepod/proxy:latest` ([repo](https://github.com/VibePod/vibepod-proxy))
4949

@@ -56,6 +56,6 @@ VP_IMAGE_OPENCODE=nezhar/opencode-cli:latest vp run opencode
5656
VP_IMAGE_DEVSTRAL=nezhar/devstral-cli:latest vp run devstral
5757
VP_IMAGE_AUGGIE=nezhar/auggie-cli:latest vp run auggie
5858
VP_IMAGE_COPILOT=nezhar/copilot-cli:latest vp run copilot
59-
VP_IMAGE_CODEX=nezhar/codex-cli:latest vp run codex
59+
VP_IMAGE_CODEX=vibepod/codex:latest vp run codex
6060
VP_DATASETTE_IMAGE=vibepod/datasette:latest vp logs start
6161
```

docs/agents/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ VibePod manages each agent as a Docker container. Credentials and config are per
1212
| `devstral` | Mistral | `vp d` | `nezhar/devstral-cli:latest` |
1313
| `auggie` | Augment Code | `vp a` | `nezhar/auggie-cli:latest` |
1414
| `copilot` | GitHub | `vp p` | `nezhar/copilot-cli:latest` |
15-
| `codex` | OpenAI | `vp x` | `nezhar/codex-cli:latest` |
15+
| `codex` | OpenAI | `vp x` | `vibepod/codex:latest` |
1616

1717
## First run & authentication
1818

docs/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ agents:
8080

8181
codex:
8282
enabled: true
83-
image: nezhar/codex-cli:latest
83+
image: vibepod/codex:latest
8484
env: {}
8585
volumes: []
8686
init: []

src/vibepod/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
f"{os.environ.get('VP_IMAGE_NAMESPACE', 'nezhar')}/copilot-cli:latest",
6262
),
6363
"codex": os.environ.get(
64-
"VP_IMAGE_CODEX", f"{os.environ.get('VP_IMAGE_NAMESPACE', 'nezhar')}/codex-cli:latest"
64+
"VP_IMAGE_CODEX", f"{os.environ.get('VP_IMAGE_NAMESPACE', 'vibepod')}/codex:latest"
6565
),
6666
"datasette": os.environ.get(
6767
"VP_DATASETTE_IMAGE", f"{os.environ.get('VP_IMAGE_NAMESPACE', 'vibepod')}/datasette:latest"

0 commit comments

Comments
 (0)