docker copy directory from container to host code example
Example 1: copy file from docker container to host
docker cp :/file/path/within/container /host/path/target
Example 2: copy file from host to docker container
docker cp foo.txt mycontainer:/foo.txt
Example 3: docker copy folder to container
docker cp Desktop/imagesets :tf_files/flower_photos/imagesets