Skip to content

Getting Started

Register or sign in to Runta and get your Runta token.

Terminal window
export RUNTA_TOKEN=<tenant_token>

Install the Linux CLI package:

Terminal window
npm install -g @runta/runta-cli

The npm CLI package currently targets Linux x64 and Linux arm64. If npm cannot resolve the matching native optional dependency, or if you use another platform, use the CLI artifact from your Runta account or release channel, then place it on your PATH:

Terminal window
mkdir -p ~/.local/bin
chmod +x runta
mv runta ~/.local/bin/runta

Create a runtime named hello with 2 vCPUs and 2048 MiB of memory, then run a command inside it.

Terminal window
runta run --name hello --cpus 2 --memory 2048
runta exec hello -- echo "Hello from Runta"