Docker远程连接配置
Posted lxmzq
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker远程连接配置相关的知识,希望对你有一定的参考价值。
1、修改docker.service启动信息
2、修改daemon.json
3、重载、重启
[root@localhost ~]# systemctl daemon-reload
[root@localhost ~]# service docker restart
4、内部连接测试
[root@localhost ~]# curl http://192.168.220.66:2375/verion 或者 docker -H 192.168.220.66:2375 ps
5、如果Centos是在虚拟机中,外部主机需要连接,则需要关闭Centos的防火墙
sudo systemctl stop firewalld 临时关闭
sudo systemctl disable firewalld ,然后reboot 永久关闭
sudo systemctl status firewalld 查看防火墙状态。
6、VS Code 连接Docker
以上是关于Docker远程连接配置的主要内容,如果未能解决你的问题,请参考以下文章
vscode 远程连接 docker 容器进行 C++ 代码调试实践