其他分享
首页 > 其他分享> > 解决docker:x509:certificate has expired or is not yet valid

解决docker:x509:certificate has expired or is not yet valid

作者:互联网

来源: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



标签:certificate,x509,主机,etc,valid,镜像,docker,yet
来源: https://www.cnblogs.com/qiu-hua/p/14907520.html