Linux-- aliyun docker 加速

sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-‘EOF’
{
“registry-mirrors”: [“https://ixbgv285.mirror.aliyuncs.com”]
}
EOF
sudo systemctl daemon-reload
sudo systemctl restart docker
systemctl unmask docker.service
systemctl unmask docker.socket
systemctl start docker.service

猜你喜欢

转载自blog.csdn.net/qq_40134461/article/details/88815134