2016-10-14 15:30:36 -07:00
|
|
|
---
|
|
|
|
title: "swarm update"
|
|
|
|
description: "The swarm update command description and usage"
|
2016-11-03 15:48:30 -07:00
|
|
|
keywords: "swarm, update"
|
2016-10-14 15:30:36 -07:00
|
|
|
---
|
2016-06-13 19:57:19 -07:00
|
|
|
|
|
|
|
# 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:
|
2016-11-10 12:05:19 -08:00
|
|
|
--autolock Change manager autolocking setting (true|false)
|
2016-10-25 12:22:07 +00:00
|
|
|
--cert-expiry duration Validity period for node certificates (ns|us|ms|s|m|h) (default 2160h0m0s)
|
|
|
|
--dispatcher-heartbeat duration Dispatcher heartbeat period (ns|us|ms|s|m|h) (default 5s)
|
2016-12-11 21:25:40 +09:00
|
|
|
--external-ca external-ca Specifications of one or more certificate signing endpoints
|
2016-07-07 20:43:18 +02:00
|
|
|
--help Print usage
|
2016-12-11 21:25:40 +09:00
|
|
|
--max-snapshots uint Number of additional Raft snapshots to retain
|
|
|
|
--snapshot-interval uint Number of log entries between Raft snapshots (default 10000)
|
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
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Description
|
|
|
|
|
2018-12-23 12:27:52 +01:00
|
|
|
Updates a swarm with new parameter values.
|
|
|
|
|
2020-04-19 17:08:37 +02:00
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> This is a cluster management command, and must be executed on a swarm
|
|
|
|
> manager node. To learn about managers and workers, refer to the
|
|
|
|
> [Swarm mode section](https://docs.docker.com/engine/swarm/) in the
|
|
|
|
> documentation.
|
2016-06-13 19:57:19 -07:00
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Examples
|
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
|
|
|
```
|
|
|
|
|
2017-02-07 15:42:48 -08:00
|
|
|
## Related commands
|
2016-06-13 19:57:19 -07:00
|
|
|
|
2017-05-10 15:34:56 -07:00
|
|
|
* [swarm ca](swarm_ca.md)
|
2016-06-13 19:57:19 -07:00
|
|
|
* [swarm init](swarm_init.md)
|
|
|
|
* [swarm join](swarm_join.md)
|
2020-04-19 15:43:08 +02:00
|
|
|
* [swarm join-token](swarm_join-token.md)
|
2016-06-13 19:57:19 -07:00
|
|
|
* [swarm leave](swarm_leave.md)
|
2016-12-20 01:55:51 +08:00
|
|
|
* [swarm unlock](swarm_unlock.md)
|
2020-04-19 15:43:08 +02:00
|
|
|
* [swarm unlock-key](swarm_unlock-key.md)
|