sekuire registry

Manage OCI registry authentication and push container images for your AI agents.

Subcommands


registry login

Authenticate with the Sekuire OCI registry. Stores credentials locally and configures Docker credential helpers.

bash
sekuire registry login

This 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

OptionDescription
<IMAGE>Image reference (e.g., registry.sekuire.com/org/agent:tag)
--signSign image with agent's Ed25519 key (default: true)
--scanRun 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.0

Authentication Flow

  1. sekuire login - Obtain API key from Sekuire
  2. sekuire registry login - Exchange API key for OCI token
  3. Token stored in ~/.sekuire/registry-auth.json
  4. Docker credential helper configured automatically

Next Steps