zoukankan      html  css  js  c++  java
  • Docker error while installing

    tony@tp:~$ docker search xxl-job
    Error response from daemon: Get https://index.docker.io/v1/search?q=xxl-job&n=25: dial tcp: lookup index.docker.io on 127.0.1.1:53: server misbehaving

    Solution:

        这个就是网络错误,我的是因为我的dns服务器没有设置好,在下面这个文件
        vim /etc/resolv.conf
        加上
        nameserver 1.1.1.1
        就好了

    tony@tp:~$ docker pull xxl-job
    Using default tag: latest
    Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)

    Solution:

      1. modify  /etc/default/docker :

         add DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4"

       

           2. vim /etc/docker/daemon.json

             在文件中加入:

            {

                  "registry-mirrors":["https://docker.mirrors.ustc.edu.cn"]

              }
             3. sudo systemctl restart docker
  • 相关阅读:
    特性类
    WebGL中的第三个小程序(着色器)
    C#紧耦合的例子
    特性
    python两个目录匹配,粘贴图片
    Leetcode 53
    逻辑回归-1.原理
    多项式回归-4.模型正则化
    python 线程
    python 进程
  • 原文地址:https://www.cnblogs.com/xiaoyu-10201/p/12435865.html
Copyright © 2011-2022 走看看