博客园 首页 私信博主 显示目录 隐藏目录 管理

07 2020 档案

摘要:设置代理: export http_proxy="http://proxy-com" export https_proxy="https://proxy-com:" 取消代理: unset http_proxy unset https_proxy 阅读全文
posted @ 2020-07-21 10:00 MrSharp 阅读(477) 评论(0) 推荐(1)
摘要:主要原因是docker容器中的时间用的是标准时间,不是用的宿主机的时间。 修改方法: docker run -e TZ="Asia/Shanghai" -d -p 80:80 --name nginx nginx-image 阅读全文
posted @ 2020-07-19 22:57 MrSharp 阅读(319) 评论(0) 推荐(0)