我尝试在容器中安装包含代码的文件夹,我想在主机中更改代码并查看guest中的更改,但在guest中安装代码的文件夹为空
文本 在第一张图片中,我正在运行
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"
}
]