update engine reference with latest changes from 19.03 (#10716)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn 2020-04-28 12:44:45 +02:00 committed by GitHub
parent ecdbded6b2
commit 9660a33356
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 8 deletions

View File

@ -286,11 +286,12 @@ examples: |-
| Option | Equivalent | Description | | Option | Equivalent | Description |
|--------------------------------------------------|-------------|-------------------------------------------------------| |--------------------------------------------------|-------------|-------------------------------------------------------|
| `com.docker.network.bridge.name` | - | bridge name to be used when creating the Linux bridge | | `com.docker.network.bridge.name` | - | Bridge name to be used when creating the Linux bridge |
| `com.docker.network.bridge.enable_ip_masquerade` | `--ip-masq` | Enable IP masquerading | | `com.docker.network.bridge.enable_ip_masquerade` | `--ip-masq` | Enable IP masquerading |
| `com.docker.network.bridge.enable_icc` | `--icc` | Enable or Disable Inter Container Connectivity | | `com.docker.network.bridge.enable_icc` | `--icc` | Enable or Disable Inter Container Connectivity |
| `com.docker.network.bridge.host_binding_ipv4` | `--ip` | Default IP when binding container ports | | `com.docker.network.bridge.host_binding_ipv4` | `--ip` | Default IP when binding container ports |
| `com.docker.network.driver.mtu` | `--mtu` | Set the containers network MTU | | `com.docker.network.driver.mtu` | `--mtu` | Set the containers network MTU |
| `com.docker.network.container_interface_prefix` | - | Set a custom prefix for container interfaces |
The following arguments can be passed to `docker network create` for any The following arguments can be passed to `docker network create` for any
network driver, again with their approximate equivalents to `docker daemon`. network driver, again with their approximate equivalents to `docker daemon`.

View File

@ -29,7 +29,7 @@ examples: |-
```bash ```bash
$ docker network prune $ docker network prune
WARNING! This will remove all networks not used by at least one container. WARNING! This will remove all custom networks not used by at least one container.
Are you sure you want to continue? [y/N] y Are you sure you want to continue? [y/N] y
Deleted Networks: Deleted Networks:
n1 n1

View File

@ -817,16 +817,13 @@ examples: |-
```bash ```bash
$ docker service create \ $ docker service create \
--name=myservice \ --name=myservice \
--mount \ --mount type=volume,source=test-data,target=/somewhere \
type=volume,source=test-data,target=/somewhere \ nginx:alpine
nginx:alpine \
myservice
myservice myservice
$ docker service update \ $ docker service update \
--mount-add \ --mount-add type=volume,source=other-volume,target=/somewhere-else \
type=volume,source=other-volume,target=/somewhere-else \
myservice myservice
myservice myservice