第一次使用docker for windows 遇到的坑

原文: 第一次使用docker for windows 遇到的坑

1. 目前win10安装docker, 不需要安装其他工具,可直接到官网下载



2. 此版本的docker可同时运行Windows container和Linux container。在powershell里运行

& 'C:\Program Files\Docker\Docker\DockerCli.exe' -SwitchDaemon

可直接进行切换。切换结果可通过docker version查看。



3. 在docker setting里设置镜像路径。

中国官方镜像源地址为:https://registry.docker-cn.com


网易云docker镜像地址

https://c.163yun.com/hub#/m/library/


拉取centos镜像可直接运行  docker pull hub.c.163.com/library/centos:latest


4. 在设置insecure registries 为my-registry:5000后,拉取镜像失败。(暂未解决)


原因:

Our docker registry is installed on Linux, and I install docker on win 10.

When I run the command “docker pull my-registry:5000/myimage”, it reports an error:

Attempting next endpoint for pull after error: error parsing HTTP 404 response body: invalid character ‘<’ looking for beginning of value: “\n404 Not Found\n

Not Found

\n

The requested URL was not found on the server. If you entered the URL manually please check your spelling and try again.

\n”



猜你喜欢

转载自www.cnblogs.com/lonelyxmas/p/10336552.html