1 安装必要软件
https://hub.docker.com/editions/community/docker-ce-desktop-windows
在这里下载 Docker Desktop for Windows,并安装。2.1.0.5版本于2019.12.20
看到Windows图标栏中中显示“Docker Desktop is running”,说明安装运行OK。
右键点击图标,可以在setting中设置代理。
2 尝试运行Fedora Docker image
下载最新的Fedora image:
docker pull fedora:latest
运行:
docker run --interactive --tty fedora:latest bash
在/etc/dnf/dnf.conf
中添加:
proxy=http://URL:PORT/
跟新Fedora:
$ dnf update
3 电脑重启后,再次运行Fedora Docker image
docker ps -a
docker run <name>
docker exec -ti <name> bash
网友评论