docker: Error response from daemon: failed to create task for container: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: error during container init: error mounting "/opt/nginx/conf/nginx.conf" to rootfs at "/etc/nginx/nginx.conf": mount /opt/nginx/conf/nginx.conf:/etc/nginx/nginx.conf (via /proc/self/fd/6), flags: 0x5000: not a directory: unknown: Are you trying to mount a directory onto a file (or vice-versa)? Check if the specified host path exists and is the expected type.
时间: 2024-04-01 09:35:46 浏览: 277
Docker获取镜像报错docker: Error response from daemon
这个错误提示与前一个错误提示类似,只是指定的路径变为了 `/opt/nginx/conf/nginx.conf`。
同样,这个错误提示是因为 Docker 试图将 `/opt/nginx/conf/nginx.conf` 文件挂载到容器的 `/etc/nginx/nginx.conf` 文件上,但是 `/opt/nginx/conf/nginx.conf` 并不是一个目录,而是一个文件。因此,Docker 无法挂载该文件。
要解决这个问题,您可以检查一下 `/opt/nginx/conf/nginx.conf` 这个路径是否存在,以及它是一个文件还是一个目录。如果它是一个文件,您需要将其更改为目录,或者将其更改为正确的配置文件路径。如果它是一个目录,则需要检查容器内部的 `/etc/nginx/nginx.conf` 文件是否已经存在,如果已经存在,则需要将其删除,以便 Docker 可以将 `/opt/nginx/conf/nginx.conf` 文件挂载到该路径上。
阅读全文