来源:https://blog.csdn.net/qq_38942551/article/details/99134783
记录一下遇到的问题:x509:certificate has expired or is not yet valid
背景:主机向镜像仓库传镜像的时候,出现错误提示
问题如下所示
(1)这个问题遇到过两次,这里出现这个问题的主要原因是没有进行安全设置:
/etc/docker/daemon.json
{
"insecure-registries": [
"0.0.0.0/0"
]
}
(2)还有一种情况是时间问题,直接同步时间就可以:
ntpdate cn.pool.ntp.org
解决docker:x509:certificate has expired or is not yet valid
原文:https://www.cnblogs.com/qiu-hua/p/14907520.html