1 在windows ubuntu 子系统上安装docker时要选择ubuntu 18.04,如果选择20会出现各种问题
2 为了保证后续不出错 先检查自己的windows版本是不是符合要求
https://docs.microsoft.com/zh-cn/windows/wsl/install-win10 -- 非常重要,否则即使安装成功也会出现
docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused "process_linux.go:319: getting the final child's pid from pipe caused \"EOF\"": unknown
的类似错误。
如何是在wsl上安装dokcer,参考
https://nickjanetakis.com/blog/setting-up-docker-for-windows-and-wsl-to-work-flawlessly
这篇帖子,否则参考官网
3 之前看网上教程 如果使用 curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 阿里云的镜像安装的话会在/etc/apt/sources.list.d 下创建一个docker.list文件,里面存储了http://mirrors.aliyun.com/docker-engine/apt/repo docker-engine 的 阿里的镜像,这样你之后无论做什么操作,都会从这个镜像安装,然后提示失败,所以如果需要将该条数据删除
4 新手建议严格按照https://docs.docker.com/engine/install/ubuntu/#installation-methods 官方文档安装,英文差的同学可以参考
https://www.runoob.com/docker/ubuntu-docker-install.html 的翻译