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
|
||||
default_value: "false"
|
||||
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
|
||||
shorthand: t
|
||||
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
|
||||
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`
|
||||
command. However, if you specify the `-a` option, `docker cp` sets the ownership
|
||||
to the user and primary group at the source.
|
||||
If you specify the `-L` option, `docker cp` follows any symbolic link
|
||||
command. If you specify the `-L` option, `docker cp` follows any symbolic link
|
||||
in the `SRC_PATH`. `docker cp` does *not* create parent directories for
|
||||
`DEST_PATH` if they do not exist.
|
||||
|
||||
|
|
|
@ -80,6 +80,9 @@ options:
|
|||
- option: squash
|
||||
default_value: "false"
|
||||
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
|
||||
shorthand: t
|
||||
description: Name and optionally a tag in the 'name:tag' format
|
||||
|
|
|
@ -62,6 +62,9 @@ options:
|
|||
- option: password
|
||||
shorthand: p
|
||||
description: Password
|
||||
- option: password-stdin
|
||||
default_value: "false"
|
||||
description: Take the password from stdin
|
||||
- option: username
|
||||
shorthand: u
|
||||
description: Username
|
||||
|
|
|
@ -9,6 +9,12 @@ long: |-
|
|||
usage: docker service scale SERVICE=REPLICAS [SERVICE=REPLICAS...]
|
||||
pname: docker service
|
||||
plink: docker_service.yaml
|
||||
options:
|
||||
- option: detach
|
||||
shorthand: d
|
||||
default_value: "true"
|
||||
description: |
|
||||
Exit immediately instead of waiting for the service to converge
|
||||
examples: |-
|
||||
### Scale a single service
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
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
|
||||
manager node.
|
||||
usage: docker swarm ca [OPTIONS]
|
||||
|
|
|
@ -145,11 +145,11 @@ examples: |-
|
|||
|
||||
Placeholder | Description
|
||||
--------------|------------------------------------------------------------------------------------------
|
||||
`.Name` | Volume name
|
||||
`.Driver` | Volume driver
|
||||
`.Scope` | Volume scope (local, global)
|
||||
`.Mountpoint` | The mount point of the volume on the host
|
||||
`.Labels` | All labels assigned to the volume
|
||||
`.Name` | Network name
|
||||
`.Driver` | Network driver
|
||||
`.Scope` | Network scope (local, global)
|
||||
`.Mountpoint` | Whether the network is internal or not.
|
||||
`.Labels` | All labels assigned to the volume.
|
||||
`.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
|
||||
|
|
Loading…
Reference in New Issue