2016-10-14 18:30:36 -04:00
|
|
|
---
|
|
|
|
title: "swarm update"
|
|
|
|
description: "The swarm update command description and usage"
|
|
|
|
keywords: ["swarm, update"]
|
|
|
|
---
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-10-19 13:25:45 -04:00
|
|
|
<!-- This file is maintained within the docker/docker Github
|
|
|
|
repository at https://github.com/docker/docker/. Make all
|
|
|
|
pull requests against that repo. If you see this file in
|
|
|
|
another repository, consider it read-only there, as it will
|
|
|
|
periodically be overwritten by the definitive file. Pull
|
|
|
|
requests which include edits to this file in other repositories
|
|
|
|
will be rejected.
|
|
|
|
-->
|
|
|
|
|
2016-06-13 22:57:19 -04:00
|
|
|
# swarm update
|
|
|
|
|
2016-07-07 14:43:18 -04:00
|
|
|
```markdown
|
|
|
|
Usage: docker swarm update [OPTIONS]
|
|
|
|
|
2016-07-20 14:15:08 -04:00
|
|
|
Update the swarm
|
2016-07-07 14:43:18 -04:00
|
|
|
|
|
|
|
Options:
|
|
|
|
--cert-expiry duration Validity period for node certificates (default 2160h0m0s)
|
|
|
|
--dispatcher-heartbeat duration Dispatcher heartbeat period (default 5s)
|
|
|
|
--external-ca value Specifications of one or more certificate signing endpoints
|
|
|
|
--help Print usage
|
2016-07-24 05:13:06 -04:00
|
|
|
--task-history-limit int Task history retention limit (default 5)
|
2016-07-07 14:43:18 -04:00
|
|
|
```
|
2016-06-13 22:57:19 -04:00
|
|
|
|
2016-07-25 19:24:32 -04:00
|
|
|
Updates a swarm with new parameter values. This command must target a manager node.
|
2016-06-13 22:57:19 -04:00
|
|
|
|
|
|
|
|
|
|
|
```bash
|
2016-08-05 19:51:07 -04:00
|
|
|
$ docker swarm update --cert-expiry 720h
|
2016-06-13 22:57:19 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
## Related information
|
|
|
|
|
|
|
|
* [swarm init](swarm_init.md)
|
|
|
|
* [swarm join](swarm_join.md)
|
|
|
|
* [swarm leave](swarm_leave.md)
|