diff options
author | Jose Diaz-Gonzalez <email@josediazgonzalez.com> | 2019-05-29 03:56:47 -0400 |
---|---|---|
committer | Jose Diaz-Gonzalez <email@josediazgonzalez.com> | 2019-05-29 12:44:25 -0400 |
commit | 635c161f38aa68c40d98b108f6a3b12f0e36a58a (patch) | |
tree | e1e5ff68c7f4ce98cebb60a601f5326006da92e7 /cmd | |
parent | cd5bc9c4c5cdc0a51921fae8e58a4b8962cda6e6 (diff) | |
download | podman-635c161f38aa68c40d98b108f6a3b12f0e36a58a.tar.gz podman-635c161f38aa68c40d98b108f6a3b12f0e36a58a.tar.bz2 podman-635c161f38aa68c40d98b108f6a3b12f0e36a58a.zip |
add missing container cp command
'docker cp' is an alias for 'docker container cp', and podman should have the equivalent alias.
Signed-off-by: Jose Diaz-Gonzalez <email@josediazgonzalez.com>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/podman/container.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/podman/container.go b/cmd/podman/container.go index 530175a55..839ae3a0e 100644 --- a/cmd/podman/container.go +++ b/cmd/podman/container.go @@ -54,6 +54,7 @@ var ( _checkpointCommand, _containerExistsCommand, _contInspectSubCommand, + _cpCommand, _diffCommand, _exportCommand, _createCommand, |