Registries
Container registry credentials for pulling private images during deployments.
Endpoints
| Method | Path | Description |
|---|---|---|
GET | /api/v1/registries | List registries |
POST | /api/v1/registries | Add registry |
GET | /api/v1/registries/:id | Get registry |
PUT | /api/v1/registries/:id | Update registry |
DELETE | /api/v1/registries/:id | Delete registry |
POST /api/v1/registries
{
"name": "Docker Hub",
"url": "registry.hub.docker.com",
"username": "myuser",
"password": "access-token"
}Passwords are encrypted at rest. Registry responses mask sensitive credentials.
Supported registries include Docker Hub, GitHub Container Registry (ghcr.io), GitLab Registry, AWS ECR, Google Artifact Registry, and any OCI-compatible registry.
Last updated on