Docker卷无法通过docker-compose文件将文件从容器复制到主机吗?
操作系统:Windows 10 Pro。
我已经通过在线资源尝试了许多建议,但是仍然没有运气。
我的撰写文件:
version: "3.7"
services:
cypress_automation_tests:
image: cypress_framework
build:
context: .
dockerfile: ./Dockerfile
volumes:
- ./dockerTestResults:/cypress_framework/cypress/results
我的Dockerfile:
version: "3.7"
services:
cypress_automation_tests:
image: cypress_framework
build:
context: .
dockerfile: ./Dockerfile
volumes:
- ./dockerTestResults:/cypress_framework/cypress/results
可以在容器内正常执行测试,但是当我连接到容器时,结果文件夹为空,但是如果我从撰写文件中删除卷代码,然后再次触发测试,则测试结果将出现在结果文件夹中。
请注意:我还启用了正在引用和使用的驱动器(c:)。
有什么想法吗?