微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

docker常见问题

mac上docker常见问题

1、the Docker daemon at tcp://192.168.0.107:2375. Is the docker daemon running

unset DOCKER_HOST

unset DOCKER_TLS_VERIFY

unset DOCKER_TLS_PATH

docker ps

2、修改国内镜像地址

2.1、mac上修改------------------------------

修改~/.docker/daemon.json文件,在后面加入:

{
"registry-mirrors": ["https://plapxez2.mirror.aliyuncs.com"],
"insecure-registries":["docker.codedev.top:88"]
}

2.2、ubuntu上修改------------------------------

mkdir -p /etc/docker
tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://plapxez2.mirror.aliyuncs.com"],
"insecure-registries":["docker.codedev.top:88"]
}
EOF
systemctl daemon-reload
systemctl restart docker
ufw disable

<style></style>

3、mac上profile位置

Users/mark/.bash_profile

修改:open -e .bash_profile

生效:source .bash_profile

<style></style>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐