Answers for "docker copy from container to host"

9

copy file from docker container to host

docker cp <containerId>:/file/path/within/container /host/path/target
Posted by: Guest on June-23-2020
7

copy file from docker container to host

docker cp <containerId>:/file/path/within/container /host/path/target
Posted by: Guest on October-20-2020
1

docker copy from container to host

# container to host
ocker cp <containerId>:/file/path/within/container /host/path/target

# host to container
docker cp /host/local/path/file <containerId>:/file/path/in/container/file
Posted by: Guest on October-06-2021

Code answers related to "docker copy from container to host"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language