NextuneNextune Docs
CLI

Packages

List deployment packages available in your workspace.

Deployment packages define CPU, memory, and storage for new applications. You need a package ID when running nextune app deploy.

List packages

nextune packages list

Example:

NAME        CPU   MEMORY  STORAGE  ID
Starter     0.5   512Mi   1Gi      pkg_abc123
Production  2     2Gi     10Gi     pkg_def456

Use --json to parse IDs in scripts:

nextune packages list --json

Use with deploy

nextune app deploy \
  --image myorg/api \
  --tag v1.2.0 \
  --package pkg_abc123 \
  --name my-api

See Apps for full deploy options.

On this page