从官方docker pull 经常拉取镜像的时候很慢或者拉不下来,可以使用国内的镜像试试,以阿里云镜为例,设置步骤:
vi /etc/docker/daemon.json #centos8 默认的路径
粘贴以下内容 { "registry-mirrors": ["https://9cpn8tt6.mirror.aliyuncs.com"] }
:wq
保存退出。
另外一种方法:
tee /etc/docker/daemon.json <<-'EOF' { "registry-mirrors": ["https://9cpn8tt6.mirror.aliyuncs.com"] } EOF
systemctl daemon-reload systemctl restart docker