Copying data from and to Docker containers
问题 I have 2 docker containers running on my system. I wanted to copy the data from one container to another container from my host system itself. i know that to copy data from container to host we have to use docker cp <Source path> <container Id>:path in container Now i am trying to copy the data directly from one container to another, is there any way to do that ?? i tried doing this. docker cp <container-1>:/usr/local/nginx/vishnu/vishtest.txt <container-2>:/home/smadmin/vishnusource/ but the