list_images to see if already imported.
Authentication
Before importing, authenticate with the registry:- Call
registry_token_obtainto open browser for PAT creation - User creates read-only PAT in registry web UI
- Call
registry_authto validate and store credentials
Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
registry_url | string | required | Registry URL (e.g., docker://python:3.11) |
tag | string | - | Tag to assign after import |
wait | boolean | true | Wait for completion |
i_accept_that_anonymous_access_might_be_rate_limited | boolean | false | Skip authentication (not recommended) |
Examples
Basic (requires prior authentication):Response
wait=false: {"operation_id": "op-xxx"}
Common Base Images
| Registry URL | Use Case |
|---|---|
docker://python:3.11-slim | Python |
docker://node:20-slim | Node.js |
docker://alpine:latest | Minimal Linux |
docker://ubuntu:22.04 | Full Linux |
docker://golang:1.21 | Go |