尝试将文件夹装入Docker容器时出错

时间:2019-03-13 17:57:37

标签: node.js docker dockerfile docker-volume

我尝试在容器中安装包含代码的文件夹,我想在主机中更改代码并查看guest中的更改,但在guest中安装代码的文件夹为空

image 1

image2

image3

文本 在第一张图片中,我正在运行

docker run --name discord -it -v /c/xampp/htdocs/software/js/Pasante- bot:/usr/app/code bot

在/ usr / app / code文件夹内的第二张图像中,容器中是im,ls正在执行操作,但文件夹为空

正在运行的第三张图片中

docker inspect discord

输出:

"Mounts": [
        {
            "Type": "bind",
            "Source": "/c/xampp/htdocs/software/js/Pasante-bot",
            "Destination": "/usr/app/code",
            "Mode": "",
            "RW": true,
            "Propagation": "rprivate"
        }
    ]

0 个答案:

没有答案