docker cp file into container code example
Example 1: copy file to docker container
docker cp foo.txt mycontainer:/foo.txt
Example 2: docker cp file from host to container
docker cp src/. mycontainer:/target
docker cp mycontainer:/src/. target
docker cp foo.txt mycontainer:/foo.txt
docker cp src/. mycontainer:/target
docker cp mycontainer:/src/. target