mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Update remote API docs for the removal of deprecated force
in docker tag
.
This fix updates remote API docs for the removal of deprecated `force` in `docker tag`. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
parent
4455ec14b8
commit
7b08941882
2 changed files with 2 additions and 2 deletions
|
@ -123,6 +123,7 @@ This section lists each version from latest to oldest. Each listing includes a
|
|||
* `GET /events` now supports filtering by daemon name or ID.
|
||||
* `GET /images/json` now supports filters `since` and `before`.
|
||||
* `POST /containers/(id or name)/start` no longer accepts a `HostConfig`.
|
||||
* `POST /images/(name)/tag` no longer has a `force` query parameter.
|
||||
|
||||
### v1.23 API changes
|
||||
|
||||
|
|
|
@ -2031,7 +2031,7 @@ Tag the image `name` into a repository
|
|||
|
||||
**Example request**:
|
||||
|
||||
POST /images/test/tag?repo=myrepo&force=0&tag=v42 HTTP/1.1
|
||||
POST /images/test/tag?repo=myrepo&tag=v42 HTTP/1.1
|
||||
|
||||
**Example response**:
|
||||
|
||||
|
@ -2040,7 +2040,6 @@ Tag the image `name` into a repository
|
|||
Query Parameters:
|
||||
|
||||
- **repo** – The repository to tag in
|
||||
- **force** – 1/True/true or 0/False/false, default false
|
||||
- **tag** - The new tag name
|
||||
|
||||
Status Codes:
|
||||
|
|
Loading…
Reference in a new issue