Images
Images determine what software is available inside your workspace out of the box. All images include SSH access, systemd, and the Rigbox CLI.Both images are built on Debian 12 (Bookworm) and include Python 3.12 and Node.js 22. Specialized software — VS Code, Jupyter, Architecture Explorer, Virtual Browser, and more — is layered on top of a workspace as app recipes and tools, not baked into a dedicated image.
What’s in each image
base is the right choice for most workloads. It includes:- Python 3.12 with
uvfor fast package management - Node.js 22 with npm
- git, vim, tmux, curl, wget, jq
- GitHub CLI (
gh) - Pre-warmed npm caches for popular tools (Jupyter, Marimo, Streamlit, Excalidraw)
- Docker CLI (for building images - Docker daemon runs on the host)
- cmake, make, gcc, g++
- strace, gdb, ltrace for debugging
- PostgreSQL client (
psql)
Listing Available Images
Images are not exposed as a standalone resource. The set of images you can boot is implied by the templates the server publishes — every template’simage field names the base image it uses. To see which images are currently available, list templates and read the image column:
--query:
Templates
Templates are pre-configured workspace definitions that pair an image with sensible resource defaults. Use them with quick deploy for one-call workspace creation. Requests below a template’s RAM, vCPU, or disk floor are raised before the workspace is created or started.Listing Available Templates
Choosing the Right Image
Use this decision tree to pick the image that fits your workload:Do you need Architecture Explorer or Virtual Browser?
Spawn a dev workspace and install the tool you need withrig tools install — see Architecture Explorer and Virtual Browser.
Do you need Docker, cmake, or native build tools?
If you’re compiling C/C++ code, building Docker images, or need debugging tools like strace and gdb, use the dev image.For everything else, use base
The base image covers Python, Node.js, and general development. It’s the smallest and fastest to boot.Quick Deploy with a Template
The fastest way to create a workspace isrig workspace spawn with a template ID:
rig workspace spawn creates the workspace, boots it, and waits until it’s ready - all in one call. See Quick Deploy for the API form.
Custom Workspace with a Specific Template
If the template defaults don’t fit your needs, create a workspace manually and specify the template along with custom resource settings.Resizing After Creation
You can change the RAM, vCPU, and disk size of an existing workspace without switching images. The workspace must be stopped first.Pre-warmed Caches
The base image includes pre-warmed npm caches for several popular tools. This means installing catalog apps like Jupyter, Marimo, Streamlit, and Excalidraw is significantly faster because dependencies are already downloaded.
See Catalog Apps for how to install these tools.
Next Steps
- Workspaces - create, start, stop, and manage workspace lifecycle
- Expose Ports & Route Apps - make services accessible at
*.rigbox.dev - Catalog Apps - install VS Code, Jupyter, and more with one call