gpt4 book ai didi

docker - 一个 docker 卷中的多个文件夹

转载 作者:行者123 更新时间:2023-12-02 17:51:12 26 4
gpt4 key购买 nike

我有两个文件夹,比如说/etc/folder1 和/etc/folder2。我想将它们都映射到同一个 docker 卷中。这样我在卷的根目录中有这两个文件夹。那可能吗?

我想要的是:

/etc/folder1 
/etc/folder2
and then /vol1/folder1 and /vol1/folder2

最佳答案

是的:

> mkdir ~/vol1
> mkdir ~/vol2
> touch ~/vol1/file1
> touch ~/vol2/file2
> docker run -it -v ~/vol1:/vol1 -v ~/vol2:/vol2 ubuntu find / -name file*
/vol2/file2
/vol1/file1
...

您可以将多个卷挂载到一个容器中,并且您可以使用卷将单个文件从主机事件挂载到容器中。

关于docker - 一个 docker 卷中的多个文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39718295/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com