Answers for "copy file to docker"

1

copy file to docker conatiner using docker dockerfile

COPY foo.txt /data/foo.txt
# where foo.txt is the relative path on host
# and /data/foo.txt is the absolute path in the image
Posted by: Guest on September-25-2021
0

copy file from docker image

id=$(docker create image-name)
docker cp $id:path - > local-tar-file
docker rm -v $id
Posted by: Guest on October-18-2021

Browse Popular Code Answers by Language