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

Params

Param name Description
search
optional

filter results


Value:

Must be String

order
optional

sort results


Value:

Must be String

page
optional

paginate results


Value:

Must be String

per_page
optional

number of entries per request


Value:

Must be String


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

Params

Param name Description
id
required

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

Params

Param name Description
registry
required

Value:

Must be a Hash

registry[name]
required

Value:

Must be String

registry[url]
required

Value:

Must be String

registry[description]
optional , nil allowed

Value:

Must be String

registry[username]
optional , nil allowed

Value:

Must be String

registry[password]
optional , nil allowed

Value:

Must be String


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

Params

Param name Description
id
required

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
required

Value:

Must be a Hash

registry[name]
optional

Value:

Must be String

registry[url]
optional

Value:

Must be String

registry[description]
optional , nil allowed

Value:

Must be String

registry[username]
optional , nil allowed

Value:

Must be String

registry[password]
optional , nil allowed

Value:

Must be String


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

Params

Param name Description
id
required

Value:

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