【4】Linking Containers Together

//网络端口映射

//-P随机映射到主机的49153~49155端口

$ docker run -d -P training/webapp python app.py


//将镜像的5000端口映射到主机的5000端口

$ docker run -d -p 5000:5000 training/webapp python app.py


//将镜像的5000端口映射到IP为127.0.0.1的网卡的5000端口
$ docker run -d -p 127.0.0.1:5000:5000 training/webapp python app.py

//将镜像的5000端口映射到主机的随机端口
$ docker run -d -p 127.0.0.1::5000 training/webapp python app.py

//绑定UDP端口
$ docker run -d -p 127.0.0.1:5000:5000/udp training/webapp python app.py

//查看指定容器的端口情况
$ docker port CONTAINERID[3~4] 5000
127.0.0.1:49155


//--name给镜像定义一个名称
$ docker run -d -P --name web training/webapp python app.py


//查看镜像属性
$ docker ps -l
CONTAINER ID  IMAGE                  COMMAND        CREATED       STATUS       PORTS                    NAMES
aed84ee21bde  training/webapp:latest python app.py  12 hours ago  Up 2 seconds 0.0.0.0:49154->5000/tcp  web


//用inspect查看镜像名称
$ docker inspect -f "{{ .Name }}" aed84ee21bde
/web


//Docker容器连接
//根据training/postgre创建一个名字为db的容器,使用--name为容器定义名称
$ docker run -d --name db training/postgres

//删除已经创建过的web容器
$ docker rm -f web

//创建一个新的web容器并与db容器连接,--link的使用方法--link <name or id>:alias
$ docker run -d -P --name web --link db:db training/webapp python app.py

//使用inspect查看web容器的连接情况
$ docker inspect -f "{{ .HostConfig.Links }}" web
[/db:/web/db]
//You can see that the web container is now linked to the db container web/db. 

So what does linking the containers actually do? You've learned that a link allows a source container to provide information about itself to a recipient container. In our example, the recipient, web, can access information about the source db. To do this, Docker creates a secure tunnel between the containers that doesn't need to expose any ports externally on the container; you'll note when we started the db container we did not use either the -P or -p flags. That's a big benefit of linking: we don't need to expose the source container, here the PostgreSQL database, to the network.

Docker exposes connectivity information for the source container to the recipient container in two ways:

  • Environment variables,

  • Updating the /etc/hosts file.






Environment Variables

When two containers are linked, Docker will set some environment variables in the target container to enable programmatic discovery of information related to the source container.

First, Docker will set an <alias>_NAME environment variable specifying the alias of each target container that was given in a --link parameter. So, for example, if a new container called web is being linked to a database container called db via --link db:webdb then in the web container would be WEBDB_NAME=/web/webdb.

Docker will then also define a set of environment variables for each port that is exposed by the source container. The pattern followed is:

  • <name>_PORT_<port>_<protocol> will contain a URL reference to the port. Where <name> is the alias name specified in the --link parameter (e.g. webdb), <port> is the port number being exposed, and <protocol> is either TCP or UDP. The format of the URL will be: <protocol>://<container_ip_address>:<port> (e.g. tcp://172.17.0.82:8080). This URL will then be split into the following 3 environment variables for convenience:

  • <name>_PORT_<port>_<protocol>_ADDR will contain just the IP address from the URL (e.g. WEBDB_PORT_8080_TCP_ADDR=172.17.0.82).

  • <name>_PORT_<port>_<protocol>_PORT will contain just the port number from the URL (e.g. WEBDB_PORT_8080_TCP_PORT=8080).

  • <name>_PORT_<port>_<protocol>_PROTO will contain just the protocol from the URL (e.g. WEBDB_PORT_8080_TCP_PROTO=tcp).

If there are multiple ports exposed then the above set of environment variables will be defined for each one.

Finally, there will be an environment variable called <alias>_PORT that will contain the URL of the first exposed port of the source container. For example, WEBDB_PORT=tcp://172.17.0.82:8080. In this case, 'first' is defined as the lowest numbered port that is exposed. If that port is used for both tcp and udp, then the tcp one will be specified.

Returning back to our database example, you can run the env command to list the specified container's environment variables.

    $ sudo docker run --rm --name web2 --link db:db training/webapp env
    . . .
    DB_NAME=/web2/db
    DB_PORT=tcp://172.17.0.5:5432
    DB_PORT_5432_TCP=tcp://172.17.0.5:5432
    DB_PORT_5432_TCP_PROTO=tcp
    DB_PORT_5432_TCP_PORT=5432
    DB_PORT_5432_TCP_ADDR=172.17.0.5
    . . .

Note: These Environment variables are only set for the first process in the container. Similarly, some daemons (such as sshd) will scrub them when spawning shells for connection.

Note: Unlike host entries in the /etc/hosts file, IP addresses stored in the environment variables are not automatically updated if the source container is restarted. We recommend using the host entries in /etc/hosts to resolve the IP address of linked containers.

You can see that Docker has created a series of environment variables with useful information about the source db container. Each variable is prefixed with DB_, which is populated from the alias you specified above. If the alias were db1, the variables would be prefixed with DB1_. You can use these environment variables to configure your applications to connect to the database on the db container. The connection will be secure and private; only the linked web container will be able to talk to the db container.

Updating the /etc/hosts file

In addition to the environment variables, Docker adds a host entry for the source container to the /etc/hosts file. Here's an entry for the web container:

$ sudo docker run -t -i --rm --link db:db training/webapp /bin/bash
root@aed84ee21bde:/opt/webapp# cat /etc/hosts
172.17.0.7  aed84ee21bde
. . .
172.17.0.5  db

You can see two relevant host entries. The first is an entry for the web container that uses the Container ID as a host name. The second entry uses the link alias to reference the IP address of the db container. You can ping that host now via this host name.

root@aed84ee21bde:/opt/webapp# apt-get install -yqq inetutils-ping
root@aed84ee21bde:/opt/webapp# ping db
PING db (172.17.0.5): 48 data bytes
56 bytes from 172.17.0.5: icmp_seq=0 ttl=64 time=0.267 ms
56 bytes from 172.17.0.5: icmp_seq=1 ttl=64 time=0.250 ms
56 bytes from 172.17.0.5: icmp_seq=2 ttl=64 time=0.256 ms

Note: In the example, you'll note you had to install ping because it was not included in the container initially.

Here, you used the ping command to ping the db container using its host entry, which resolves to 172.17.0.5. You can use this host entry to configure an application to make use of your db container.

Note: You can link multiple recipient containers to a single source. For example, you could have multiple (differently named) web containers attached to your db container.

If you restart the source container, the linked containers /etc/hosts files will be automatically updated with the source container's new IP address, allowing linked communication to continue.

$ sudo docker restart db
db
$ sudo docker run -t -i --rm --link db:db training/webapp /bin/bash
root@aed84ee21bde:/opt/webapp# cat /etc/hosts
172.17.0.7  aed84ee21bde
. . .
172.17.0.9  db



你可能感兴趣的:(【4】Linking Containers Together)