diff options
author | Sebastiaan van Stijn <github@gone.nl> | 2018-10-26 15:39:36 +0200 |
---|---|---|
committer | Sebastiaan van Stijn <github@gone.nl> | 2018-10-26 15:39:36 +0200 |
commit | cb9d2cb71b9265af566fcaace0e52dca54520288 (patch) | |
tree | b2babdb189a7536dbd66301e6860888569603112 /docs | |
parent | e238713cc9dade460ec961dde3f94173ca59a545 (diff) | |
download | docker-cb9d2cb71b9265af566fcaace0e52dca54520288.tar.gz |
Move support for sysctl options in services to API v1.40
This feature was added in 14da20f5e79fc322208ec49edce34e0b575d8973,
and was merged after API v1.39 shipped as part of the Docker 18.09
release candidates.
This commit moves the feature to the correct API version.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/version-history.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/api/version-history.md b/docs/api/version-history.md index 03ef55dfca..bc39408caf 100644 --- a/docs/api/version-history.md +++ b/docs/api/version-history.md @@ -17,6 +17,12 @@ keywords: "API, Docker, rcli, REST, documentation" [Docker Engine API v1.40](https://docs.docker.com/engine/api/v1.40/) documentation +* `GET /services` now returns `Sysctls` as part of the `ContainerSpec`. +* `GET /services/{id}` now returns `Sysctls` as part of the `ContainerSpec`. +* `POST /services/create` now accepts `Sysctls` as part of the `ContainerSpec`. +* `POST /services/{id}/update` now accepts `Sysctls` as part of the `ContainerSpec`. +* `GET /tasks` now returns `Sysctls` as part of the `ContainerSpec`. +* `GET /tasks/{id}` now returns `Sysctls` as part of the `ContainerSpec`. ## V1.39 API changes @@ -35,12 +41,6 @@ keywords: "API, Docker, rcli, REST, documentation" on the node.label. The format of the label filter is `node.label=<key>`/`node.label=<key>=<value>` to return those with the specified labels, or `node.label!=<key>`/`node.label!=<key>=<value>` to return those without the specified labels. -* `GET /services` now returns `Sysctls` as part of the `ContainerSpec`. -* `GET /services/{id}` now returns `Sysctls` as part of the `ContainerSpec`. -* `POST /services/create` now accepts `Sysctls` as part of the `ContainerSpec`. -* `POST /services/{id}/update` now accepts `Sysctls` as part of the `ContainerSpec`. -* `GET /tasks` now returns `Sysctls` as part of the `ContainerSpec`. -* `GET /tasks/{id}` now returns `Sysctls` as part of the `ContainerSpec`. ## V1.38 API changes |