Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
db9a29c
Sync vnext-engine branch to docker/docker SHA 2f12d2808464dcfdf45e092…
Oct 10, 2016
b43e065
swarm: Document rollback, failure threshold, and monitor flags
aaronlehmann Oct 15, 2016
28d6670
Remove Fedora 22 as it's EOL
thaJeztah Oct 17, 2016
3ee2cac
update apparmor documentation to reflect changes in 1.13.0
tophj-ibm Oct 11, 2016
b77c79c
Added details about tag support for AWS log driver
Oct 29, 2016
94994eb
Changed wording for tag description
Oct 31, 2016
5f51299
Updated docs to show full container ID
Oct 31, 2016
5581208
Updated wording on log stream default
Oct 31, 2016
e340017
Added raw tags
Nov 1, 2016
2d28c9b
Better raw escape
Nov 2, 2016
a34df93
Update note about custom certs with system certs
dmcgowan Nov 1, 2016
a23e6f9
Remove Ubuntu 15.10 Wily Werewolf
thaJeztah Nov 9, 2016
b77fe8a
Add Ubuntu 16.10 Yakkety Yak
thaJeztah Nov 9, 2016
b9e7556
add unix-sockets support in Fluentd logging driver
akirakoyasu Nov 12, 2016
48f4cfb
Add engine changes that were lost in syncing
thaJeztah Nov 15, 2016
fff5231
Create logentries.md (#244)
caarlos0 Nov 16, 2016
d643158
Add NATS client as option for publishing container logs (#369)
Nov 22, 2016
c190685
Document ability to update a service's image
Nov 11, 2016
2716460
First version of stack deployment tutorial
aanand Nov 22, 2016
38e8dd6
Initial dump of CLI in yaml (#737)
FrenchBen Nov 29, 2016
1d30a65
Formatting fix-ups for vnext-engine branch
Dec 1, 2016
421d359
Re-remove reference files that get pulled in from docker repo (see #511)
Dec 1, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions _data/engine-cli/docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
command: docker
cname: docker wait
clink: docker_wait.yaml
15 changes: 15 additions & 0 deletions _data/engine-cli/docker_attach.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
command: docker attach
short: Attach to a running container
long: Attach to a running container
usage: docker attach [OPTIONS] CONTAINER
pname: docker
plink: docker.yaml
options:
- option: detach-keys
description: Override the key sequence for detaching a container
- option: no-stdin
default_value: "false"
description: Do not attach STDIN
- option: sig-proxy
default_value: "true"
description: Proxy all received signals to the process
77 changes: 77 additions & 0 deletions _data/engine-cli/docker_build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
command: docker build
short: Build an image from a Dockerfile
long: Build an image from a Dockerfile
usage: docker build [OPTIONS] PATH | URL | -
pname: docker
plink: docker.yaml
options:
- option: build-arg
default_value: '[]'
description: Set build-time variables
- option: cache-from
default_value: '[]'
description: Images to consider as cache sources
- option: cgroup-parent
description: Optional parent cgroup for the container
- option: compress
default_value: "false"
description: Compress the build context using gzip
- option: cpu-period
default_value: "0"
description: Limit the CPU CFS (Completely Fair Scheduler) period
- option: cpu-quota
default_value: "0"
description: Limit the CPU CFS (Completely Fair Scheduler) quota
- option: cpu-shares
shorthand: c
default_value: "0"
description: CPU shares (relative weight)
- option: cpuset-cpus
description: CPUs in which to allow execution (0-3, 0,1)
- option: cpuset-mems
description: MEMs in which to allow execution (0-3, 0,1)
- option: disable-content-trust
default_value: "true"
description: Skip image verification
- option: file
shorthand: f
description: Name of the Dockerfile (Default is 'PATH/Dockerfile')
- option: force-rm
default_value: "false"
description: Always remove intermediate containers
- option: isolation
description: Container isolation technology
- option: label
default_value: '[]'
description: Set metadata for an image
- option: memory
shorthand: m
description: Memory limit
- option: memory-swap
description: |
Swap limit equal to memory plus swap: '-1' to enable unlimited swap
- option: no-cache
default_value: "false"
description: Do not use cache when building the image
- option: pull
default_value: "false"
description: Always attempt to pull a newer version of the image
- option: quiet
shorthand: q
default_value: "false"
description: Suppress the build output and print image ID on success
- option: rm
default_value: "true"
description: Remove intermediate containers after a successful build
- option: security-opt
default_value: '[]'
description: Security options
- option: shm-size
description: Size of /dev/shm, default value is 64MB
- option: tag
shorthand: t
default_value: '[]'
description: Name and optionally a tag in the 'name:tag' format
- option: ulimit
default_value: '[]'
description: Ulimit options
21 changes: 21 additions & 0 deletions _data/engine-cli/docker_commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
command: docker commit
short: Create a new image from a container's changes
long: Create a new image from a container's changes
usage: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]
pname: docker
plink: docker.yaml
options:
- option: author
shorthand: a
description: Author (e.g., "John Hannibal Smith <hannibal@a-team.com>")
- option: change
shorthand: c
default_value: '[]'
description: Apply Dockerfile instruction to the created image
- option: message
shorthand: m
description: Commit message
- option: pause
shorthand: p
default_value: "true"
description: Pause container during commit
8 changes: 8 additions & 0 deletions _data/engine-cli/docker_container.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
command: docker container
short: Manage containers
long: Manage containers
usage: docker container
pname: docker
plink: docker.yaml
cname: docker container wait
clink: docker_container_wait.yaml
15 changes: 15 additions & 0 deletions _data/engine-cli/docker_container_attach.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
command: docker container attach
short: Attach to a running container
long: Attach to a running container
usage: docker container attach [OPTIONS] CONTAINER
pname: docker container
plink: docker_container.yaml
options:
- option: detach-keys
description: Override the key sequence for detaching a container
- option: no-stdin
default_value: "false"
description: Do not attach STDIN
- option: sig-proxy
default_value: "true"
description: Proxy all received signals to the process
21 changes: 21 additions & 0 deletions _data/engine-cli/docker_container_commit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
command: docker container commit
short: Create a new image from a container's changes
long: Create a new image from a container's changes
usage: docker container commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]
pname: docker container
plink: docker_container.yaml
options:
- option: author
shorthand: a
description: Author (e.g., "John Hannibal Smith <hannibal@a-team.com>")
- option: change
shorthand: c
default_value: '[]'
description: Apply Dockerfile instruction to the created image
- option: message
shorthand: m
description: Commit message
- option: pause
shorthand: p
default_value: "true"
description: Pause container during commit
18 changes: 18 additions & 0 deletions _data/engine-cli/docker_container_cp.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
command: docker container cp
short: Copy files/folders between a container and the local filesystem
long: |-
Copy files/folders between a container and the local filesystem

Use '-' as the source to read a tar archive from stdin
and extract it to a directory destination in a container.
Use '-' as the destination to stream a tar archive of a
container source to stdout.
usage: "docker container cp [OPTIONS] CONTAINER:SRC_PATH DEST_PATH|-\n\tdocker cp
[OPTIONS] SRC_PATH|- CONTAINER:DEST_PATH"
pname: docker container
plink: docker_container.yaml
options:
- option: follow-link
shorthand: L
default_value: "false"
description: Always follow symbol link in SRC_PATH
Loading