最佳答案
当我尝试将文件从一个文件夹复制到现有的容器文件夹时,是否遗漏了什么:
I want to copy files within the build(host) folder to html in my container:
docker cp ./src/build b081dbbb679b:/usr/share/nginx/html
为了清楚起见,我需要从主机复制到容器。
But it copies the whole build folder and copies it to ..html/build
我只需要将构建文件夹中的文件(和子文件夹)复制到. html 中。
是我遗漏了什么,还是我必须一个一个地复制每个文件?