docker: Error response from daemon: create var/opt/nginx/conf.d/: "var/opt/nginx/conf.d/" includes invalid characters for a local volume name, only "[a-zA-Z0-9][a-zA-Z0-9_.-]" are allowed. If you intended to pass a host directory, use absolute path. See 'docker run --help'.
时间: 2024-04-01 20:35:12 浏览: 318
这个错误是因为你在创建docker容器时使用了一个本地卷名称 `var/opt/nginx/conf.d/` ,但是这个名称包含了无效字符,只有 `[a-zA-Z0-9][a-zA-Z0-9_.-]` 这些字符是允许的。这个错误的解决方法是,你需要修改本地卷的名称,确保其只包含有效字符。如果你想使用一个主机目录,你应该使用绝对路径,而不是相对路径。你可以参考 `docker run --help` 命令来查看更多信息。
相关问题
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.
这个错误提示与前一个错误提示类似,只是指定的路径变为了 `/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` 文件挂载到该路径上。
阅读全文