how to copy files from host to inside docker container code example
Example 1: copy file from docker container to host
docker cp <containerId>:/file/path/within/container /host/path/target
Example 2: docker cp file from host to container
docker cp src/. mycontainer:/target
docker cp mycontainer:/src/. target