Remove documentation of old swarm options

This commit is contained in:
Ludovic Fernandez 2023-07-03 09:14:05 +02:00 committed by GitHub
parent d4daafa468
commit 08b80c20f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -407,31 +407,7 @@ providers:
# ...
```
### `swarmMode`
_Optional, Default=false_
Enables the Swarm Mode (instead of standalone Docker).
```yaml tab="File (YAML)"
providers:
swarm:
swarmMode: true
# ...
```
```toml tab="File (TOML)"
[providers.swarm]
swarmMode = true
# ...
```
```bash tab="CLI"
--providers.swarm.swarmMode=true
# ...
```
### `swarmModeRefreshSeconds`
### `refreshSeconds`
_Optional, Default=15_
@ -440,18 +416,18 @@ Defines the polling interval (in seconds) for Swarm Mode.
```yaml tab="File (YAML)"
providers:
swarm:
swarmModeRefreshSeconds: 30
refreshSeconds: 30
# ...
```
```toml tab="File (TOML)"
[providers.swarm]
swarmModeRefreshSeconds = 30
refreshSeconds = 30
# ...
```
```bash tab="CLI"
--providers.swarm.swarmModeRefreshSeconds=30
--providers.swarm.refreshSeconds=30
# ...
```