Authorizations: oauth2_implicit (repo:write)
Type | Name | Description | Schema |
---|---|---|---|
path |
repository |
The full path of the repository. e.g. namespace/name |
string |
path |
tag |
The name of the tag |
string |
Makes changes to a specific tag
Name | Description | Schema |
---|---|---|
manifest_digest |
(If specified) The manifest digest to which the tag should point |
|
expiration |
(If specified) The expiration for the image |
HTTP Code | Description | Schema |
---|---|---|
201 |
Successful invocation |
|
400 |
Bad Request |
|
401 |
Session required |
|
403 |
Unauthorized access |
|
404 |
Not found |
$ curl -X PUT \
-H "Authorization: Bearer <bearer_token>" \
-H "Content-Type: application/json" \
--data '{
"manifest_digest": "<manifest_digest>"
}' \
https://<quay-server.example.com>/api/v1/repository/<namespace>/<repository_name>/tag/<tag>