Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/openshell-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ const SANDBOX_EXAMPLES: &str = "\x1b[1mALIAS\x1b[0m

\x1b[1mEXAMPLES\x1b[0m
$ openshell sandbox create
$ openshell sandbox create --from python
$ openshell sandbox create --from base
$ openshell sandbox connect my-sandbox
$ openshell sandbox list
$ openshell sandbox delete my-sandbox
Expand Down
2 changes: 1 addition & 1 deletion crates/openshell-sdk/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl From<i32> for SandboxPhase {
pub struct SandboxSpec {
/// Optional user-supplied sandbox name. When empty the server generates one.
pub name: Option<String>,
/// Container image reference (e.g. `ghcr.io/nvidia/openshell-community/sandboxes/python:latest`).
/// Container image reference (e.g. `ghcr.io/nvidia/openshell-community/sandboxes/base:latest`).
pub image: Option<String>,
/// Labels attached to the sandbox.
pub labels: HashMap<String, String>,
Expand Down
Loading