美文网首页
docker常见问题记录

docker常见问题记录

作者: wwq2020 | 来源:发表于2020-08-21 11:48 被阅读0次

时区问题

Dockerfile中

RUN cp /etc/localtime /etc/localtime 

如果需要指定时区

RUN cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

也可以运行时挂载进去

 docker run -d --name nginx -v /etc/localtime:/etc/localtime:ro nginx

apk repositories修改

Dockerfile中

RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories 

修改dns解析顺序

nsswitch.conf

hosts: files dns

Dockerfile中

COPY nsswitch.conf /etc/

相关文章

网友评论

      本文标题:docker常见问题记录

      本文链接:https://www.haomeiwen.com/subject/mvrujktx.html