sekuire registry
Manage OCI registry authentication and push container images for your AI agents.
Subcommands
- registry login - Authenticate with the registry
- registry push - Push a container image
registry login
Authenticate with the Sekuire OCI registry. Stores credentials locally and configures Docker credential helpers.
bash
sekuire registry loginThis uses your existing Sekuire API key (from sekuire login) to authenticate with the container registry.
registry push
Push a container image to the Sekuire OCI registry with automatic signing.
bash
sekuire registry push <IMAGE> [OPTIONS]Options
| Option | Description |
|---|---|
<IMAGE> | Image reference (e.g., registry.sekuire.com/org/agent:tag) |
--sign | Sign image with agent's Ed25519 key (default: true) |
--scan | Run vulnerability scan before push (default: true) |
Example
Build and pushbash
# Build with registry tag
docker build -t registry.sekuire.com/my-org/my-agent:v1.0.0 .
# Push (authenticates, scans, signs)
sekuire registry push registry.sekuire.com/my-org/my-agent:v1.0.0Authentication Flow
sekuire login- Obtain API key from Sekuiresekuire registry login- Exchange API key for OCI token- Token stored in
~/.sekuire/registry-auth.json - Docker credential helper configured automatically
Next Steps
- images - List and scan images
- OCI Registry - Registry architecture
- docker-init - Generate Dockerfiles