Skip to content

Commit 436b8c9

Browse files
authored
chore: more openshell renames (#18)
1 parent 21aa171 commit 436b8c9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

brev/welcome-ui/SERVER_ARCHITECTURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The server operates in **two distinct modes** depending on sandbox readiness:
126126
| `LOG_FILE` | `/tmp/nemoclaw-sandbox-create.log` | Sandbox creation log (written by subprocess) |
127127
| `PROVIDER_CONFIG_CACHE` | `/tmp/nemoclaw-provider-config-cache.json` | Provider config values cache |
128128
| `OTHER_AGENTS_YAML` | `ROOT/other-agents.yaml` | YAML modal definition file |
129-
| `NEMOCLAW_IMAGE` | `ghcr.io/nvidia/nemoclaw-community/sandboxes/nemoclaw:local` | (Currently unused, commented out) |
129+
| `NEMOCLAW_IMAGE` | `ghcr.io/nvidia/openshell-community/sandboxes/nemoclaw:local` | (Currently unused, commented out) |
130130
| `SANDBOX_PORT` | `18789` | Port the sandbox listens on (localhost) |
131131

132132
### Hardcoded Constants

brev/welcome-ui/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const PORT = parseInt(process.env.PORT || "8081", 10);
3232
const ROOT = __dirname;
3333
const REPO_ROOT = process.env.REPO_ROOT || path.join(ROOT, "..", "..");
3434
const SANDBOX_DIR = path.join(REPO_ROOT, "sandboxes", "nemoclaw");
35-
const NEMOCLAW_IMAGE = "ghcr.io/nvidia/nemoclaw-community/sandboxes/nemoclaw:local";
35+
const NEMOCLAW_IMAGE = "ghcr.io/nvidia/openshell-community/sandboxes/nemoclaw:local";
3636
const POLICY_FILE = path.join(SANDBOX_DIR, "policy.yaml");
3737

3838
const LOG_FILE = "/tmp/nemoclaw-sandbox-create.log";

sandboxes/nemoclaw/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Build: docker build -t nemoclaw .
1212
# Run: nemoclaw sandbox create --from nemoclaw --forward 18789 -- nemoclaw-start
1313

14-
ARG BASE_IMAGE=ghcr.io/nvidia/nemoclaw-community/sandboxes/openclaw:latest
14+
ARG BASE_IMAGE=ghcr.io/nvidia/openshell-community/sandboxes/openclaw:latest
1515
FROM ${BASE_IMAGE}
1616

1717
USER root

sandboxes/openclaw/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ docker build -t openshell-openclaw .
1818
To build against a specific base image:
1919

2020
```bash
21-
docker build -t openshell-openclaw --build-arg BASE_IMAGE=openshell/sandbox:v0.1.0 .
21+
docker build -t openshell-openclaw --build-arg BASE_IMAGE=ghcr.io/nvidia/openshell-community/sandboxes/base:latest .
2222
```
2323

2424
## Usage

0 commit comments

Comments
 (0)