2016-06-13 19:57:19 -07: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 20:43:18 +02:00
|
|
|
```markdown
|
|
|
|
Usage: docker swarm update [OPTIONS]
|
|
|
|
|
2016-07-20 11:15:08 -07:00
|
|
|
Update the swarm
|
2016-07-07 20:43:18 +02: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 11:13:06 +02:00
|
|
|
--task-history-limit int Task history retention limit (default 5)
|
2016-07-07 20:43:18 +02:00
|
|
|
```
|
2016-06-13 19:57:19 -07:00
|
|
|
|
2016-07-26 01:24:32 +02:00
|
|
|
Updates a swarm with new parameter values. This command must target a manager node.
|
2016-06-13 19:57:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
```bash
|
2016-08-05 16:51:07 -07:00
|
|
|
$ docker swarm update --cert-expiry 720h
|
2016-06-13 19:57:19 -07:00
|
|
|
```
|
|
|
|
|
|
|
|
## Related information
|
|
|
|
|
|
|
|
* [swarm init](swarm_init.md)
|
|
|
|
* [swarm join](swarm_join.md)
|
|
|
|
* [swarm leave](swarm_leave.md)
|