docker bind source path does not exist: /etc/timezone“
原因docker容器启动报错,文件挂载失败invalid mount config for type "bind": bind source path does not exist: /etc/timezone"先查看一下有没有这个文件,或者这个是个位置实际上是个同名目录cat /etc/timezone此处看到确实没有这个文件解决创建文件并将'Asia/Shanghai'写入文件创建文件touc
·
原因
docker容器启动报错,文件挂载失败
invalid mount config for type "bind": bind source path does not exist: /etc/timezone"
先查看一下有没有这个文件,或者这个是个位置实际上是个同名目录
cat /etc/timezone
此处看到确实没有这个文件
解决
创建文件并将'Asia/Shanghai'写入文件
创建文件
touch /etc/timezone
写入内容
echo 'Asia/Shanghai' > /etc/timezone
更多推荐
已为社区贡献4条内容
所有评论(0)