added misssing "driver"

The example for setting the MTU on the swarm ingress network uses the wrong property:

`--opt com.docker.network.mtu=1200`

instead of

`--opt com.docker.network.driver.mtu=1200`
This commit is contained in:
Mandraenke 2022-04-06 08:40:20 +02:00 committed by GitHub
parent 11548d686e
commit 0de0cf0f1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ services which publish ports, such as a WordPress service which publishes port
--ingress \
--subnet=10.11.0.0/16 \
--gateway=10.11.0.2 \
--opt com.docker.network.mtu=1200 \
--opt com.docker.network.driver.mtu=1200 \
my-ingress
```