Answers for "how to copy file from docker to host"

13

copy file from docker container to host

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

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 "how to copy file from docker to host"

Browse Popular Code Answers by Language