From 51a0360d0115b5e2c5e7f0cbdfa6263da1419835 Mon Sep 17 00:00:00 2001 From: Matias Schimuneck Date: Tue, 21 Jul 2026 22:08:38 -0300 Subject: [PATCH] docs(docker-compose): replace removed OpenClaw community sandbox with NemoClaw redirect The OpenClaw community sandbox was removed from NVIDIA/OpenShell-Community in PR #73 (May 16, 2026). The Docker Compose tutorial and docker-compose.yml comment still referenced the stale --from openclaw command and GHCR image. Replace the broken OpenClaw tab with a redirect to the NemoClaw Quickstart, which is the supported path per docs/about/supported-agents.mdx. Remove the stale pre-pull command for the removed image. Fixes #2404 Signed-off-by: Matias Schimuneck --- deploy/docker/docker-compose.yml | 4 ++-- docs/get-started/tutorials/docker-compose.mdx | 13 ++++--------- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/deploy/docker/docker-compose.yml b/deploy/docker/docker-compose.yml index 9f6926142d..4d82964189 100644 --- a/deploy/docker/docker-compose.yml +++ b/deploy/docker/docker-compose.yml @@ -19,9 +19,9 @@ # ANTHROPIC_API_KEY=sk-ant-... \ # openshell provider create --type anthropic --from-existing # -# 4. Create a sandboxed agent — Claude Code or OpenClaw: +# 4. Create a sandboxed agent — Claude Code: # openshell sandbox create -- claude -# openshell sandbox create --from openclaw +# For OpenClaw, use NemoClaw: https://github.com/NVIDIA/NemoClaw # # Sandbox containers are managed by the gateway, not by this Compose file. # Each `openshell sandbox create` call launches a fresh container; the gateway diff --git a/docs/get-started/tutorials/docker-compose.mdx b/docs/get-started/tutorials/docker-compose.mdx index 645b5ddc98..4037c02995 100644 --- a/docs/get-started/tutorials/docker-compose.mdx +++ b/docs/get-started/tutorials/docker-compose.mdx @@ -4,7 +4,7 @@ title: "Run the Gateway with Docker Compose" sidebar-title: "Docker Compose Setup" slug: "get-started/tutorials/docker-compose" -description: "Run the OpenShell gateway as a Docker Compose service and create agent sandboxes including OpenClaw." +description: "Run the OpenShell gateway as a Docker Compose service and create agent sandboxes." keywords: "Generative AI, Docker Compose, Gateway, Sandbox, OpenClaw, Docker, Installation" --- @@ -15,7 +15,7 @@ After completing this tutorial you have: - An OpenShell gateway running as a Compose service. - The `openshell` CLI registered against that gateway. - An AI provider configured with your API key. -- A running OpenClaw sandbox. +- A running agent sandbox. ## Prerequisites @@ -134,9 +134,6 @@ Sandbox images are pulled automatically on first use, but the initial pull can t ```shell # Base image — includes Claude Code, OpenCode, Codex, and Copilot docker pull ghcr.io/nvidia/openshell-community/sandboxes/base:latest - -# OpenClaw image -docker pull ghcr.io/nvidia/openshell-community/sandboxes/openclaw:latest ``` ## Create a sandbox @@ -144,11 +141,9 @@ docker pull ghcr.io/nvidia/openshell-community/sandboxes/openclaw:latest -```shell -openshell sandbox create --from openclaw -``` +OpenClaw runs inside OpenShell through [NemoClaw](https://github.com/NVIDIA/NemoClaw), which manages the sandbox image, inference routing, and security policies. -OpenClaw launches directly. The first run pulls the image if it is not cached. +Follow the [NemoClaw Quickstart](https://docs.nvidia.com/nemoclaw/latest/get-started/quickstart/) to set up an OpenClaw sandbox with managed inference.