docker如何构建Container的host信息
1 hostname和hosts文件的作用
hostname:在网络上标示一台机器的名称
hosts: 将主机名映射到IP上
2 构建hostname和hosts文件
在建立Container时,docker需要为Container准备hosts和hostname文件,在inux系统中,hostname和hosts文件一般都放在系统的etc目录下。那么这个两个文件是如何建立起来的呢?下面详细分析一下他们的由来。
2.1 构建hostname文件
docker使用buildHostnameFile
方法构建Container的hostname文件。构建Container的hostname文件共分两个步骤:
1. 获取hostname
文件路径
2. 将hostname
文件路径记录在Container对象的HostnamePath
中
3. 将Container对象中记录的Hostname和Domainname写入hostname
文件中
实际的操作简而言之是将和写入hostname文件中。
2.1.1获取hostname
文件路径
docker使用Container方法getRootResourcePath("hostname")
来获取hostname文件路径。这个路径其实是Container在宿主机上hostname的绝对路径,形如:/var/lib/docker/containers/df89e96d00cb41e2cf4e01d4b69bda517fde6e77e7af2a6b3811236b269021d8/hostname
。
2.1.2将获取的hostname文件路径记录在Container对象中
= hostnamePath
由此可见,Container的hostname路径是从宿主机角度来看的。
2.1.3 将Container的hostname和domainname写入hostname文件中
如果Container对象的Config中有Dominname,就将Config中的Hostname和Dominname以的形式写入到hostname文件中;如果Config中没有Domainname,就只将写入hostname文件中
2.2 构建hosts文件
构建hosts文件使用Container的buildHostsFiles方法。docker构建Container的hosts文件和构建hostname文件的步骤大同小异。
1. 获取hosts文件绝对路径
2. 记录hosts路径到中
3. 获取Container的主机别名和对应的IP
4. 获取其他主机的host、IP信息
5. 将3、4步获取的信息写入hosts文件内
2.2.1获取hosts文件绝对路径
和获取hostname文件绝对路径一样,使用Container的getRootResourcePath方法,获得的hosts路径形如/var/lib/docker/containers/af4e5715614bb9d89d604d3e35257567705cbd414ca2ba2a5e0b83127d78339e/hosts
。
2.2.2记录hosts路径到中
= hostsPath
还是从宿主机的角度定位Container的hosts文件。
2.2.3获取Container的主机名和其对应的IP
此步使用daemon的children方法,根据Container的名字找到相关Container,将其host别名和对应的IP记录下来,这些信息将最终写入Container的hosts文件中。另外读取Container的hostconfig中记录的其他host信息,同样也是最终写入当前Container的hosts文件中。最后调用etchosts的Build方法将所有信息写入Container的hosts文件内。
综上,docker构建Container的hostname和hosts文件内容,一部分是从Container的配置文件config中获取,一部分是从Container相关的Container中获取。
以上分析基于docker version:1.4.1-dev