Add support for 'docker cp' to write to stdout

Closes #10805

Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
Doug Davis 2015-03-05 08:39:32 -08:00 committed by Tibor Vass
parent 863f296d3a
commit 30240ffc53
1 changed files with 7 additions and 4 deletions

View File

@ -757,12 +757,15 @@ Supported `Dockerfile` instructions: `CMD`, `ENTRYPOINT`, `ENV`, `EXPOSE`,
## cp
Copy files/folders from a container's filesystem to the host
path. Paths are relative to the root of the filesystem.
Copy files/folders from a container's filesystem to the
path. Use '-' to write the data as a tar file to STDOUT.
Paths are relative to the root of the filesystem.
Usage: docker cp CONTAINER:PATH HOSTPATH
Usage: docker cp CONTAINER:PATH HOSTPATH|-
Copy files/folders from the PATH to the HOSTPATH. Use '-' to write the data
as a tar file to STDOUT.
Copy files/folders from the PATH to the HOSTPATH
## create