zoukankan      html  css  js  c++  java
  • docker on windows v19 红色启动不了

    遇到:

    error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.40/containers/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running.

    -

    解决:

    下载最新的WSL 2 内核

    https://docs.microsoft.com/zh-cn/windows/wsl/wsl2-kernel

    --

    更改国内源:

    右键托盘图标-setting-docker engine - 修改registry-mirrors:

    "registry-mirrors": [
    "https://registry.docker-cn.com",
    "http://f1361db2.m.daocloud.io"
    ]

    -- 全部配置文件:

    {
    "registry-mirrors": [
    "https://registry.docker-cn.com",
    "http://f1361db2.m.daocloud.io"
    ],
    "insecure-registries": [],
    "debug": true,
    "experimental": false
    }

  • 相关阅读:
    KMP算法
    IEEE754 32位浮点数表示范围
    银行家算法
    字符串类
    栈类
    稀疏数组类
    队列类
    多维数组类
    单向链表类
    哈希表类
  • 原文地址:https://www.cnblogs.com/runliuv/p/13532108.html
Copyright © 2011-2022 走看看