Answers for "copy file to docker container"

5

copy file from host to docker container

docker cp foo.txt mycontainer:/foo.txt
Posted by: Guest on November-29-2020
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

Code answers related to "copy file to docker container"

Browse Popular Code Answers by Language