也许我想念一些愚蠢的东西,但是有些我不理解。
如果我这样做了docker run -d --name test -v ~/test-log:/var/log/nginx -v ~/test-config:/etc/nginx/conf.d nginx:latest
我有
ls -l ~/test-log
total 0
-rw-r--r-- 1 root root 0 Sep 1 11:17 access.log
-rw-r--r-- 1 root root 0 Sep 1 11:17 error.log
但是
ls -l ~/test-config
total 0
但是没有任何挂载的/etc/nginx/conf.d
不为空
docker run --rm --name test2 nginx:latest ls -l /etc/nginx/conf.d
total 4
-rw-r--r-- 1 root root 1093 Aug 11 14:50 default.conf
那么为什么/var/log/nginx
中的文件在~/test-log
中很好地显示,而~/test-config
仍然为空,而且/etc/nginx/conf.d
却为空?
我想念什么?
答案 0 :(得分:1)
从源上通过该位置的映像内部所存在的内容来装入文件/目录。当挂载替换对该目录的访问时,您不再看到映像内容,在Linux中以其他方式挂载文件系统也是如此。
Linux中的命名卷是半例外情况,因为docker使用映像目录内容初始化了命名卷的内容。这不适用于您正在使用的主机卷。
一旦安装了卷,容器中运行的应用程序将创建/修改/删除文件。在这种情况下,该应用会创建日志,但不会写入自己的配置文件。