-
Notifications
You must be signed in to change notification settings - Fork 773
docs(container-gateway): fix Docker driver setup for containerized gateway #1419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ericcurtin
wants to merge
1
commit into
NVIDIA:main
Choose a base branch
from
ericcurtin:docs-container-gateway-docker-driver/ec
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,128 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # OpenShell gateway — docker-compose setup (Docker compute driver) | ||
| # | ||
| # Prerequisites: | ||
| # - Docker Desktop (Windows / macOS) or Docker Engine + Compose plugin (Linux) | ||
| # - The openshell CLI installed on your workstation | ||
| # | ||
| # Quick start: | ||
| # | ||
| # 1. Start the gateway: | ||
| # docker compose up -d | ||
| # | ||
| # 2. Register the gateway with the CLI (one-time): | ||
| # openshell gateway add http://localhost:8080 --name openshell-docker | ||
| # | ||
| # 3. Configure an AI provider (example: Anthropic): | ||
| # ANTHROPIC_API_KEY=sk-ant-... \ | ||
| # openshell provider create --type anthropic --from-existing | ||
| # | ||
| # 4. Create a sandboxed agent — Claude Code or OpenClaw: | ||
| # openshell sandbox create -- claude | ||
| # openshell sandbox create --from openclaw | ||
| # | ||
| # Sandbox containers are managed by the gateway, not by this Compose file. | ||
| # Each `openshell sandbox create` call launches a fresh container; the gateway | ||
| # tracks their lifecycle. | ||
| # | ||
| # Configuration: | ||
| # All gateway and driver settings live in gateway.toml in this directory. | ||
| # Three values cannot be expressed in the TOML file and remain as env vars: | ||
| # - OPENSHELL_DB_URL (explicitly blocked from the config file to prevent | ||
| # secrets from being committed to VCS) | ||
| # - XDG_DATA_HOME / HOME (OS-level path-resolution vars outside the | ||
| # gateway config schema) | ||
| # | ||
| # command: [] note: | ||
| # The gateway image's default CMD is ["--bind-address", "0.0.0.0", "--port", | ||
| # "8080"]. CLI flags beat TOML in the merge order, so without clearing the | ||
| # CMD the TOML's bind_address = "127.0.0.1:8080" is silently ignored and the | ||
| # gateway binds 0.0.0.0. Setting command: [] lets the TOML file own all | ||
| # gateway settings. | ||
| # | ||
| # Data directory note: | ||
| # /var/lib/openshell is bind-mounted at the SAME absolute path in both the | ||
| # host and the container. This is required so that the supervisor binary | ||
| # extracted from the supervisor image can be passed to Docker as a host-side | ||
| # bind-mount source when sandbox containers are created. Named volumes | ||
| # cannot be used here because Docker resolves bind-mount sources against the | ||
| # host filesystem, not the container filesystem. | ||
| # | ||
| # Linux note: | ||
| # host.docker.internal and host.openshell.internal are not automatically | ||
| # added on Linux Docker. Add the following under the gateway service: | ||
| # extra_hosts: | ||
| # - "host.docker.internal:host-gateway" | ||
| # - "host.openshell.internal:host-gateway" | ||
|
|
||
| services: | ||
| gateway: | ||
| image: ghcr.io/nvidia/openshell/gateway:${IMAGE_TAG:-latest} | ||
| restart: unless-stopped | ||
|
|
||
| # Clear the default CMD so gateway.toml owns all settings (see note above). | ||
| command: [] | ||
|
|
||
| # This setup is Docker-outside-of-Docker (DooD), not Docker-in-Docker (DinD). | ||
| # The gateway uses the host's Docker socket to create sibling containers on the | ||
| # host, rather than running a nested Docker daemon. DooD does NOT require | ||
| # --privileged; it only needs read/write access to /var/run/docker.sock. | ||
| # | ||
| # Run as UID 0 so the gateway can: | ||
| # - write the extracted supervisor binary to /var/lib/openshell | ||
| # - access /var/run/docker.sock (typically owned by root or the docker group) | ||
| # Distroless images have no /etc/passwd, so the numeric UID must be used. | ||
| # This is appropriate for local development. Production deployments | ||
| # should use a dedicated non-root UID with explicit docker-group membership. | ||
| user: "0" | ||
|
|
||
| ports: | ||
| # gRPC / control-plane API (used by the openshell CLI and sandbox callbacks) | ||
| # The Docker driver injects host.openshell.internal:<gateway-port> into sandbox | ||
| # containers as the callback endpoint. The gateway's internal port is 8080, so | ||
| # host port 8080 must be published at the same number so that | ||
| # host.openshell.internal:8080 routes to the gateway container. | ||
| # gateway.toml binds to 127.0.0.1 — the Docker driver adds the bridge listener | ||
| # automatically so sandbox containers can reach the gateway without 0.0.0.0. | ||
| - "127.0.0.1:${OPENSHELL_PORT:-8080}:8080" | ||
| # Health endpoint (GET /healthz, GET /readyz) | ||
| - "127.0.0.1:${OPENSHELL_HEALTH_PORT:-8081}:8081" | ||
|
|
||
| volumes: | ||
| # Docker socket — lets the gateway create and manage sandbox containers. | ||
| - /var/run/docker.sock:/var/run/docker.sock | ||
|
|
||
| # Data directory — must be a bind-mount with source == target so that | ||
| # paths written inside the container are resolvable by Docker when it | ||
| # creates sandbox containers (see note above). | ||
| # /var/lib/openshell is intentionally not namespaced to a sub-path | ||
| # (e.g. /var/lib/openshell/gateway): the path must match exactly on | ||
| # both the host and inside the container, and a single gateway per host | ||
| # is the expected topology. | ||
| - type: bind | ||
| source: /var/lib/openshell | ||
| target: /var/lib/openshell | ||
|
ericcurtin marked this conversation as resolved.
|
||
| bind: | ||
| create_host_path: true | ||
|
|
||
| # TOML config — all gateway and driver settings live here. | ||
| - type: bind | ||
| source: ./gateway.toml | ||
| target: /etc/openshell/gateway.toml | ||
| read_only: true | ||
|
|
||
| environment: | ||
| # Point the gateway at the TOML config file mounted above. | ||
| OPENSHELL_GATEWAY_CONFIG: /etc/openshell/gateway.toml | ||
|
|
||
| # Database URL cannot be set in the TOML config file — it is explicitly | ||
| # blocked there to prevent secrets from being committed to VCS. | ||
| OPENSHELL_DB_URL: "sqlite:/var/lib/openshell/gateway.db?mode=rwc" | ||
|
|
||
| # XDG path variables are OS-level; they are not part of the gateway config | ||
| # schema. Setting them ensures the extracted supervisor binary lands in the | ||
| # bind-mounted directory so its path is resolvable by the host Docker daemon. | ||
| XDG_DATA_HOME: /var/lib/openshell | ||
| HOME: /var/lib/openshell | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| # OpenShell gateway TOML configuration — Docker compute driver. | ||
| # | ||
| # This file is the primary configuration source for docker-compose.yml in this | ||
| # directory. It is mounted read-only at /etc/openshell/gateway.toml inside the | ||
| # gateway container and loaded via OPENSHELL_GATEWAY_CONFIG. | ||
| # | ||
| # Why docker-compose.yml sets command: []: | ||
| # The gateway image's default CMD passes --bind-address 0.0.0.0 --port 8080 | ||
| # as explicit CLI flags. CLI flags beat the TOML file in the merge order, so | ||
| # bind_address = "127.0.0.1:8080" below would be silently ignored without | ||
| # clearing the CMD first. | ||
| # | ||
| # grpc_endpoint note: | ||
| # host.docker.internal is automatically resolvable from containers on | ||
| # Docker Desktop (Windows / macOS). On Linux, add extra_hosts to the | ||
| # gateway service: | ||
| # extra_hosts: | ||
| # - "host.docker.internal:host-gateway" | ||
| # - "host.openshell.internal:host-gateway" | ||
|
|
||
| [openshell] | ||
| version = 1 | ||
|
|
||
| [openshell.gateway] | ||
| # Bind to loopback only. The Docker driver adds an extra listener on the | ||
| # bridge interface automatically so sandbox containers can reach the gateway. | ||
| bind_address = "127.0.0.1:8080" | ||
| health_bind_address = "127.0.0.1:8081" | ||
| log_level = "info" | ||
| compute_drivers = ["docker"] | ||
| disable_tls = true | ||
|
|
||
| [openshell.drivers.docker] | ||
| # Default image pulled for `openshell sandbox create` without --from. | ||
| default_image = "ghcr.io/nvidia/openshell-community/sandboxes/base:latest" | ||
| # Supervisor image from which the openshell-sandbox binary is extracted on | ||
| # first start. The binary is cached to XDG_DATA_HOME and reused on restart. | ||
| supervisor_image = "ghcr.io/nvidia/openshell/supervisor:latest" | ||
| # Only pull images that are not already cached locally. | ||
| image_pull_policy = "IfNotPresent" | ||
| # Prefix applied to sandbox container names. | ||
| sandbox_namespace = "openshell" | ||
| # Address sandbox containers use to call back to the gateway. | ||
| # The Docker driver replaces the host with host.openshell.internal and the | ||
| # port with the gateway's own bind port (8080). Only the scheme survives. | ||
| # The gateway must be published on port 8080 on the Docker host so that | ||
| # host.openshell.internal:8080 resolves to the gateway container. | ||
| grpc_endpoint = "http://host.openshell.internal:8080" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.