diff options
author | Drew Erny <drew.erny@docker.com> | 2019-02-07 14:27:08 -0600 |
---|---|---|
committer | Drew Erny <drew.erny@docker.com> | 2019-02-19 13:14:17 -0600 |
commit | 6f1d7ddfa47bc6aae85ac997cf21b2f2a3b03d69 (patch) | |
tree | 7e0d3ba67e50959adf9dd42a03a8aef772a4727a /docs | |
parent | 20383d504b99b88cda9771315868b4a31ec2a36e (diff) | |
download | docker-6f1d7ddfa47bc6aae85ac997cf21b2f2a3b03d69.tar.gz |
Use Runtime target
The Swarmkit api specifies a target for configs called called "Runtime"
which indicates that the config is not mounted into the container but
has some other use. This commit updates the Docker api to reflect this.
Signed-off-by: Drew Erny <drew.erny@docker.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/api/version-history.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/api/version-history.md b/docs/api/version-history.md index b7bb466f12..409b94c8c4 100644 --- a/docs/api/version-history.md +++ b/docs/api/version-history.md @@ -31,6 +31,8 @@ keywords: "API, Docker, rcli, REST, documentation" * `POST /services/{id}/update` now accepts `Sysctls` as part of the `ContainerSpec`. * `POST /services/create` now accepts `Config` as part of `ContainerSpec.Privileges.CredentialSpec`. * `POST /services/{id}/update` now accepts `Config` as part of `ContainerSpec.Privileges.CredentialSpec`. +* `POST /services/create` now includes `Runtime` as an option in `ContainerSpec.Configs` +* `POST /services/{id}/update` now includes `Runtime` as an option in `ContainerSpec.Configs` * `GET /tasks` now returns `Sysctls` as part of the `ContainerSpec`. * `GET /tasks/{id}` now returns `Sysctls` as part of the `ContainerSpec`. * `GET /nodes` now supports a filter type `node.label` filter to filter nodes based |