0

enter image description here

I am trying to copy file from docker container to host. I have attached the snapshot in which I listed all the containers as well as container file structure. But when I execute docker cp, it says it could not find the file. Can anyone tell me what wrong am I doing or if I am missing something. I am very new to docker so please guide me through.

Kumar Swapnil
  • 63
  • 1
  • 8

2 Answers2

0

I think you need to absolute path to the file inside the container. See the following.

Copying files from Docker container to host

docker cp <CONTAINER>:/<ABS_PATH>/procfile .
Adam
  • 3,682
  • 2
  • 16
  • 35
0

As documented for the docker cp command:

The docker cp command assumes container paths are relative to the container’s / (root) directory

Thus CONTAINER:file.txt is equivalent to CONTAINER:/file.txt as paths are interpreted relative to the root /

yamenk
  • 40,626
  • 10
  • 80
  • 81