GET /docker/api/v2/registries
List all docker registries

Parámetros

Nombre del parámetro Descripción
search
opcional

filtrar resultados


Value:

Must be String

order
opcional

ordenar resultados


Value:

Must be String

page
opcional

paginar resultados


Value:

Must be String

per_page
opcional

número de entradas por petición


Value:

Must be String


GET /docker/api/v2/registries/:id
Show a docker registry

Parámetros

Nombre del parámetro Descripción
id
requerido

Value:

Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.


POST /docker/api/v2/registries
Create a docker registry

Parámetros

Nombre del parámetro Descripción
registry
requerido

Value:

Must be a Hash

registry[name]
requerido

Value:

Must be String

registry[url]
requerido

Value:

Must be String

registry[description]
opcional , nil permitido

Value:

Must be String

registry[username]
opcional , nil permitido

Value:

Must be String

registry[password]
opcional , nil permitido

Value:

Must be String


PUT /docker/api/v2/registries/:id
Update a docker registry

Parámetros

Nombre del parámetro Descripción
id
requerido

Value:

Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.

registry
requerido

Value:

Must be a Hash

registry[name]
opcional

Value:

Must be String

registry[url]
opcional

Value:

Must be String

registry[description]
opcional , nil permitido

Value:

Must be String

registry[username]
opcional , nil permitido

Value:

Must be String

registry[password]
opcional , nil permitido

Value:

Must be String


DELETE /docker/api/v2/registries/:id
Delete a docker registry

Parámetros

Nombre del parámetro Descripción
id
requerido

Value:

Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.