Skip to main content
GravixLayer Sandbox provides pre-configured templates for different programming environments. Use the template listing functionality to discover available templates and their specifications.

Listing Available Templates

# List all available templates
gravixlayer sandbox template list
Expected Output:
📋 Found 2 templates:

🌍 javascript-base-v1
ID: 1fe4bb8b-5e64-4244-b8e3-92ec7c47b7a2
Description: Node.js 20 sandbox environment with Alpine Linux and TypeScript support
Resources: 2 vCPU, 1024MB RAM, 1024MB disk
Visibility: public
Created: 2025-10-23T05:32:45.072038Z

🌍 python-base-v1
ID: 56461cbe-23be-419b-83da-15abd7b347fc
Description: Python 3.11 sandbox environment with Alpine Linux and essential packages
Resources: 2 vCPU, 1024MB RAM, 1024MB disk
Visibility: public
Created: 2025-10-23T05:32:45.068871Z

Available Templates

Python Base Template

Template ID: python-base-v1 Description: Python 3.11 sandbox environment with Alpine Linux and essential packages Resources:
  • CPU: 2 vCPU (shared)
  • Memory: 1024MB RAM
  • Disk: 1024MB storage

JavaScript Base Template

Template ID: javascript-base-v1 Description: Node.js 20 sandbox environment with Alpine Linux and TypeScript support Features:
  • Node.js 20 runtime
  • TypeScript support
  • Alpine Linux base
Resources:
  • CPU: 2 vCPU (shared)
  • Memory: 1024MB RAM
  • Disk: 1024MB storage

Using Templates

Create Sandbox with Template

# Create sandbox with Python template
gravixlayer sandbox create --template python-base-v1

# Create sandbox with JavaScript template
gravixlayer sandbox create --template javascript-base-v1

# Create with specific provider and region
gravixlayer sandbox create --provider gravix --region eu-west-1 --template python-base-v1

Next Steps