mirror of https://github.com/docker/docs.git
Update Edge CLI YAML files
This commit is contained in:
parent
684c7e2e23
commit
f886f6e091
|
@ -182,6 +182,9 @@ options:
|
||||||
- option: squash
|
- option: squash
|
||||||
default_value: "false"
|
default_value: "false"
|
||||||
description: Squash newly built layers into a single new layer
|
description: Squash newly built layers into a single new layer
|
||||||
|
- option: stream
|
||||||
|
default_value: "false"
|
||||||
|
description: Stream attaches to server to negotiate build context
|
||||||
- option: tag
|
- option: tag
|
||||||
shorthand: t
|
shorthand: t
|
||||||
description: Name and optionally a tag in the 'name:tag' format
|
description: Name and optionally a tag in the 'name:tag' format
|
||||||
|
|
|
@ -21,9 +21,7 @@ long: |-
|
||||||
the user and primary group at the destination. For example, files copied to a
|
the user and primary group at the destination. For example, files copied to a
|
||||||
container are created with `UID:GID` of the root user. Files copied to the local
|
container are created with `UID:GID` of the root user. Files copied to the local
|
||||||
machine are created with the `UID:GID` of the user which invoked the `docker cp`
|
machine are created with the `UID:GID` of the user which invoked the `docker cp`
|
||||||
command. However, if you specify the `-a` option, `docker cp` sets the ownership
|
command. If you specify the `-L` option, `docker cp` follows any symbolic link
|
||||||
to the user and primary group at the source.
|
|
||||||
If you specify the `-L` option, `docker cp` follows any symbolic link
|
|
||||||
in the `SRC_PATH`. `docker cp` does *not* create parent directories for
|
in the `SRC_PATH`. `docker cp` does *not* create parent directories for
|
||||||
`DEST_PATH` if they do not exist.
|
`DEST_PATH` if they do not exist.
|
||||||
|
|
||||||
|
|
|
@ -80,6 +80,9 @@ options:
|
||||||
- option: squash
|
- option: squash
|
||||||
default_value: "false"
|
default_value: "false"
|
||||||
description: Squash newly built layers into a single new layer
|
description: Squash newly built layers into a single new layer
|
||||||
|
- option: stream
|
||||||
|
default_value: "false"
|
||||||
|
description: Stream attaches to server to negotiate build context
|
||||||
- option: tag
|
- option: tag
|
||||||
shorthand: t
|
shorthand: t
|
||||||
description: Name and optionally a tag in the 'name:tag' format
|
description: Name and optionally a tag in the 'name:tag' format
|
||||||
|
|
|
@ -62,6 +62,9 @@ options:
|
||||||
- option: password
|
- option: password
|
||||||
shorthand: p
|
shorthand: p
|
||||||
description: Password
|
description: Password
|
||||||
|
- option: password-stdin
|
||||||
|
default_value: "false"
|
||||||
|
description: Take the password from stdin
|
||||||
- option: username
|
- option: username
|
||||||
shorthand: u
|
shorthand: u
|
||||||
description: Username
|
description: Username
|
||||||
|
|
|
@ -9,6 +9,12 @@ long: |-
|
||||||
usage: docker service scale SERVICE=REPLICAS [SERVICE=REPLICAS...]
|
usage: docker service scale SERVICE=REPLICAS [SERVICE=REPLICAS...]
|
||||||
pname: docker service
|
pname: docker service
|
||||||
plink: docker_service.yaml
|
plink: docker_service.yaml
|
||||||
|
options:
|
||||||
|
- option: detach
|
||||||
|
shorthand: d
|
||||||
|
default_value: "true"
|
||||||
|
description: |
|
||||||
|
Exit immediately instead of waiting for the service to converge
|
||||||
examples: |-
|
examples: |-
|
||||||
### Scale a single service
|
### Scale a single service
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
command: docker swarm ca
|
command: docker swarm ca
|
||||||
short: Manage root CA
|
short: Display and rotate the root CA
|
||||||
long: View or rotate the current swarm CA certificate. This command must target a
|
long: View or rotate the current swarm CA certificate. This command must target a
|
||||||
manager node.
|
manager node.
|
||||||
usage: docker swarm ca [OPTIONS]
|
usage: docker swarm ca [OPTIONS]
|
||||||
|
|
|
@ -145,11 +145,11 @@ examples: |-
|
||||||
|
|
||||||
Placeholder | Description
|
Placeholder | Description
|
||||||
--------------|------------------------------------------------------------------------------------------
|
--------------|------------------------------------------------------------------------------------------
|
||||||
`.Name` | Volume name
|
`.Name` | Network name
|
||||||
`.Driver` | Volume driver
|
`.Driver` | Network driver
|
||||||
`.Scope` | Volume scope (local, global)
|
`.Scope` | Network scope (local, global)
|
||||||
`.Mountpoint` | The mount point of the volume on the host
|
`.Mountpoint` | Whether the network is internal or not.
|
||||||
`.Labels` | All labels assigned to the volume
|
`.Labels` | All labels assigned to the volume.
|
||||||
`.Label` | Value of a specific label for this volume. For example `{{.Label "project.version"}}`
|
`.Label` | Value of a specific label for this volume. For example `{{.Label "project.version"}}`
|
||||||
|
|
||||||
When using the `--format` option, the `volume ls` command will either
|
When using the `--format` option, the `volume ls` command will either
|
||||||
|
|
Loading…
Reference in New Issue