Docker 安装的卷有时仍然是空的
Docker mounted volumes remains sometimes empty
也许我遗漏了一些愚蠢的东西,但有些东西我不明白。
如果我这样做 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
变成空的?
我错过了什么?
卷从源安装 files/directories 在该位置图像内部存在的任何内容上。当挂载取代对该目录的访问时,您将不再看到图像内容,与 Linux.
中的其他方式挂载文件系统相同
Linux 中的命名卷是半例外,因为 docker 使用图像目录内容初始化命名卷的内容。这不适用于您正在使用的主机卷。
安装卷后,容器内的应用程序 运行 会 created/modified/deleted 文件。在这种情况下,该应用会创建日志,但不会写入自己的配置文件。
也许我遗漏了一些愚蠢的东西,但有些东西我不明白。
如果我这样做 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
变成空的?
我错过了什么?
卷从源安装 files/directories 在该位置图像内部存在的任何内容上。当挂载取代对该目录的访问时,您将不再看到图像内容,与 Linux.
中的其他方式挂载文件系统相同Linux 中的命名卷是半例外,因为 docker 使用图像目录内容初始化命名卷的内容。这不适用于您正在使用的主机卷。
安装卷后,容器内的应用程序 运行 会 created/modified/deleted 文件。在这种情况下,该应用会创建日志,但不会写入自己的配置文件。