2016-06-13 22:57:19 -04:00
|
|
|
<!--[metadata]>
|
|
|
|
+++
|
|
|
|
title = "swarm update"
|
|
|
|
description = "The swarm update command description and usage"
|
|
|
|
keywords = ["swarm, update"]
|
|
|
|
[menu.main]
|
|
|
|
parent = "smn_cli"
|
|
|
|
+++
|
|
|
|
<![end-metadata]-->
|
|
|
|
|
|
|
|
# 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-07-20 14:15:08 -04:00
|
|
|
$ docker swarm update --cert-expirty 4000h0m0s
|
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)
|