r2r install
Install the EAC extension by pulling its Docker image. When no extension name is provided, installs all configured extensions.
Syntax
Description
The install command manages extension installation. It pulls Docker images from the container registry and registers them for use.
Without extension name:
- Reads
.r2r/r2r-cli.ymlfor configured extensions - Pulls Docker images for all extensions
- Makes extension commands available
With extension name:
- Adds the extension to
.r2r/r2r-cli.yml - Pulls the extension's Docker image
- Registers the extension for use via
r2r <extension>command
Flags
| Flag | Description |
|---|---|
--load-local |
Use local development images instead of pulling from registry |
-h, --help |
Display help information |
Examples
Install EAC Extension
What happens:
- Adds eac to
.r2r/r2r-cli.yml:
- Pulls
ghcr.io/ready-to-release/ext-eac:latestDocker image - Makes
r2r eaccommands available
Install All Configured Extensions
After cloning a repository with existing R2R configuration:
Three-Step Setup
# 1. Initialize R2R configuration
r2r init
# 2. Install EAC extension
r2r install eac
# 3. Configure EAC
r2r eac init --ai-provider claude-api
Local Development
Install using a local Docker image (for extension developers):
Configuration Changes
Before Install
.r2r/r2r-cli.yml:
After r2r install eac
.r2r/r2r-cli.yml:
extensions:
- name: 'eac'
image: 'ghcr.io/ready-to-release/ext-eac:latest'
description: 'Everything-as-Code automation'
Next Steps
After installing the extension:
- Configure the extension:
- Verify installation:
- Start using commands:
See Also
- R2R CLI Overview - Command overview and architecture
- init command - Initialize configuration before install
- list command - Browse available extensions
- cleanup command - Remove old images to free space
- Configuration Reference - Detailed configuration options
- Quick Start Tutorial - Complete setup guide
Tutorials | How-to Guides | Explanation | Reference
You are here: Reference — information-oriented technical descriptions of the system.