Fix example values for swarmModeRefreshSeconds
This commit is contained in:
parent
3b85dc9618
commit
df351511de
1 changed files with 3 additions and 3 deletions
|
@ -473,19 +473,19 @@ _Optional, Default=15_
|
||||||
|
|
||||||
```toml tab="File (TOML)"
|
```toml tab="File (TOML)"
|
||||||
[providers.docker]
|
[providers.docker]
|
||||||
swarmModeRefreshSeconds = "30s"
|
swarmModeRefreshSeconds = 30
|
||||||
# ...
|
# ...
|
||||||
```
|
```
|
||||||
|
|
||||||
```yaml tab="File (YAML)"
|
```yaml tab="File (YAML)"
|
||||||
providers:
|
providers:
|
||||||
docker:
|
docker:
|
||||||
swarmModeRefreshSeconds: "30s"
|
swarmModeRefreshSeconds: 30
|
||||||
# ...
|
# ...
|
||||||
```
|
```
|
||||||
|
|
||||||
```bash tab="CLI"
|
```bash tab="CLI"
|
||||||
--providers.docker.swarmModeRefreshSeconds=30s
|
--providers.docker.swarmModeRefreshSeconds=30
|
||||||
# ...
|
# ...
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue