Rumah > Artikel > Operasi dan penyelenggaraan > docker容器之间怎么互相调用
方法介绍:
运行容器的时候加上参数link。
具体步骤如下:
1、运行第一个容器
docker run -it --name centos-1 docker.io/centos:latest
2、运行第二个容器
[root@CentOS ~]# docker run -it --name centos-2 --link centos-1:centos-1 docker.io/centos:latest
参数介绍:
--link:参数中第一个centos-1是容器名,第二个centos-1是定义的容器别名(使用别名访问容器),为了方便使用,一般别名默认容器名。
测试结果如下:
[root@e0841aa13c5b /]# ping centos-1 PING centos-1 (172.17.0.7) 56(84) bytes of data. bytes from centos-1 (172.17.0.7): icmp_seq=1 ttl=64 time=0.210 ms bytes from centos-1 (172.17.0.7): icmp_seq=2 ttl=64 time=0.116 ms bytes from centos-1 (172.17.0.7): icmp_seq=3 ttl=64 time=0.112 ms bytes from centos-1 (172.17.0.7): icmp_seq=4 ttl=64 time=0.114 ms
注意:此方法对容器创建的顺序有要求,如果集群内部多个容器要互访,使用就不太方便。
推荐教程:docker教程
Atas ialah kandungan terperinci docker容器之间怎么互相调用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!