M1 Mac 安装完 docker 之后出现这个错误有人知道怎么解决么?查了半天 google 解决不了 x509: certificate has expired or is not yet valid. 谢谢大家
1
SingeeKing 2021-01-01 11:59:40 +08:00 via iPhone
NTP 问题,docker 目前还不支持代理,把 0.pool.ntp.org 利用 DNS 改成国内的就可以
|
2
bazingarick7 OP @SingeeKing thanks bro,确实是 NTP 问题 😁
|
3
wujiezero 2021-01-02 09:59:24 +08:00 via iPhone
使用这个配置,完美解决,记得回来感谢我😀
{ "experimental": true, "features": { "buildkit": true }, "insecure-registries": [ "registry-1.docker.io" ] } |
4
bazingarick7 OP @wujiezero NTP 同步时间后已经解决啦,不不过还是谢谢老哥
|
5
xhlq 2021-01-03 21:47:25 +08:00
@bazingarick7 老哥,你是怎么改的啊,我刚接触 mac 和 docker,能不能详细说说,我现在 docker run hello-world 就出现这个 x509: certificate has expired or is not yet valid 问题了
|
6
bazingarick7 OP @xhlq sudo sntp -sS 0.pool.ntp.org 或者你也可以试试 3 楼那个呀
|
7
xhlq 2021-01-04 13:29:02 +08:00
@bazingarick7 好的,感谢
|