Answers for "copy from local to docker container"

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
0

copy a file from local machine to docker container

docker cp <Path in the local machine> <Container ID>:<Path of file inside the container>
Posted by: Guest on May-02-2022
0

copy a file from docker container to local machine

sudo docker cp <Container ID>:<Path of file inside the container> <Path in the local machine>
Posted by: Guest on March-30-2022

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

Browse Popular Code Answers by Language