Skip to content

Automation Platform > Environments

Configuring cloud agent environments

Open in ChatGPT ↗
Ask ChatGPT about this page
Open in Claude ↗
Ask Claude about this page
Copied!

Create, configure, and manage cloud agent environments with the Oz web app, guided setup in Warp, or the Oz CLI.

Create an environment before you run a cloud agent that needs your repositories, toolchain, or setup commands. You can create and manage environments in the Oz web app, with guided setup in Warp, or through the Oz CLI.

  • GitHub repositories - Add one or more repositories for the agent to clone and work in.
  • GitHub authorization - Authorize GitHub so the agent can access your repositories. For automated workflows that use an agent API key, configure team GitHub authorization in the Admin Panel.
  • Docker image - Use a publicly accessible image that can build and run your code. Official node, python, and rust images work for many projects. You can also use Warp’s prebuilt dev images.

Create environment panel in the Oz web app

The Create environment panel in the Oz web app.

  1. Open the Environments page in the Oz web app, then click New environment.
  2. Enter a name, select one or more repositories, and enter a Docker image reference. Click Suggest to get an image recommendation based on the selected repositories.
  3. Add setup commands, cloud provider access for AWS or GCP, or a description when needed.
  4. Click Create environment. You can now use the environment with cloud agents and integrations.

Run /create-environment in Warp to inspect your repositories and generate an environment configuration. The guided setup detects languages, frameworks, and tools, then recommends an image and setup commands.

Run the command from a Git repository with no argument, or pass one or more repository paths or URLs.

# Local paths
/create-environment ./warp-internal ./warp-server
# GitHub repositories
/create-environment warpdotdev/warp-internal warpdotdev/warp-server
# GitHub URL
/create-environment https://github.com/warpdotdev/warp-internal.git

Guided setup does the following:

  • Detect repositories - Identifies the languages, frameworks, and tools the agent will use.
  • Recommend an image - Finds an existing Dockerfile, recommends an official base image, or helps you build a custom image.
  • Suggest setup commands - Uses your scripts and package managers to recommend workspace setup.
  • Create the environment - Creates the environment through the CLI and returns an environment ID.

Use the Oz CLI when you know the environment configuration, need a custom Docker image, or want to automate environment creation.

Terminal window
oz environment create \
--name ENVIRONMENT_NAME \
--docker-image IMAGE_REFERENCE \
--repo OWNER/REPO \
--setup-command "SETUP_COMMAND" \
--description "DESCRIPTION"

Replace ENVIRONMENT_NAME with a human-readable label, IMAGE_REFERENCE with a Docker Hub image, OWNER/REPO with a repository to clone, SETUP_COMMAND with a workspace command, and DESCRIPTION with an optional summary. Repeat --repo and --setup-command for each additional repository or command.

Design the image and setup commands so they produce the same workspace on every run.

  • Keep setup repeatable - Write setup commands that are safe to rerun and produce the same toolchain and workspace state for a given repository revision.
  • Pin toolchain versions - Pin language runtimes and core tools in a Docker image, then use lockfiles such as package-lock.json for dependencies.
  • Define the workspace boundary - In a multi-repo environment, state which repositories are cloned and where setup commands run.
  • Make prerequisites explicit - Add any required build, code generation, or system-package installation steps to the setup commands.
Terminal window
# Repeatable setup
mkdir -p .cache
npm ci
# Setup that can fail on rerun or drift over time
mkdir .cache
npm install

If setup commands need credentials, configure Agent Secrets instead of hardcoding tokens.

Cloud agents run as a non-root user inside the container. Configure your image and setup commands for that user before you create the environment.

Understand how Warp chooses the container user

Section titled “Understand how Warp chooses the container user”
  • Image with a non-root USER - Warp respects the Dockerfile USER directive and runs the agent as that user.
  • Image that starts as root - Warp runs the agent as a dedicated agent user with passwordless sudo. The user has UID and GID 1000 when available.
  • Image that cannot support a non-root user - If Warp can’t install sudo or the workspace isn’t writable by the agent user, it logs a warning and continues as root.
  • Use sudo for root access - Prefix commands such as apt-get install, writes to /usr/local or /etc, and chown with sudo. Passwordless sudo preserves your PATH, but removes unsafe variables such as LD_* and BASH_ENV.
  • Install tools outside /root - The agent home directory is /home/agent. Install tools and configuration stored in ~/.bashrc, ~/.cargo, or ~/.nvm system-wide or somewhere the agent user can access.
  • Keep directories writable by UID and GID 1000 - Files the agent creates use UID 1000. Directories in your image must be writable by that user.

Use the Oz CLI to inspect and update environments after you create them.

Terminal window
oz environment list

Replace <ENV_ID> with the ID of the environment you want to view.

Terminal window
oz environment get <ENV_ID>

Replace <ENV_ID> with the ID of the environment you want to modify.

Terminal window
# Add or remove a repository
oz environment update <ENV_ID> --repo OWNER/REPO
oz environment update <ENV_ID> --remove-repo OWNER/REPO
# Add or remove a setup command
oz environment update <ENV_ID> --setup-command "SETUP_COMMAND"
oz environment update <ENV_ID> --remove-setup-command "SETUP_COMMAND"
# Update the name, description, or Docker image
oz environment update <ENV_ID> --name "ENVIRONMENT_NAME"
oz environment update <ENV_ID> --description "DESCRIPTION"
oz environment update <ENV_ID> --docker-image IMAGE_REFERENCE

Use --remove-description to clear the description. Use --force to skip confirmation checks for environments used by integrations.

Replace <ENV_ID> with the ID of the environment you want to delete.

Terminal window
oz environment delete <ENV_ID>

Add --force to skip confirmation checks for environments used by integrations.