mirror of
https://github.com/yeasy/docker_practice.git
synced 2024-11-16 19:43:41 +00:00
30 lines
1.6 KiB
Markdown
30 lines
1.6 KiB
Markdown
## 配置 DNS
|
||
Docker 沒有為每個容器專門定制鏡像,那麽怎麽自定義配置容器的主機名和 DNS 配置呢?
|
||
秘訣就是它利用虛擬文件來掛載到來容器的 3 個相關配置文件。
|
||
|
||
在容器中使用 mount 命令可以看到掛載信息:
|
||
```
|
||
$ mount
|
||
...
|
||
/dev/disk/by-uuid/1fec...ebdf on /etc/hostname type ext4 ...
|
||
/dev/disk/by-uuid/1fec...ebdf on /etc/hosts type ext4 ...
|
||
tmpfs on /etc/resolv.conf type tmpfs ...
|
||
...
|
||
```
|
||
這種機制可以讓宿主主機 DNS 信息發生更新後,所有 Docker 容器的 dns 配置通過 `/etc/resolv.conf` 文件立刻得到更新。
|
||
|
||
如果用戶想要手動指定容器的配置,可以利用下面的選項。
|
||
|
||
`-h HOSTNAME or --hostname=HOSTNAME`
|
||
設定容器的主機名,它會被寫到容器內的 `/etc/hostname` 和 `/etc/hosts`。但它在容器外部看不到,既不會在 `docker ps` 中顯示,也不會在其他的容器的 `/etc/hosts` 看到。
|
||
|
||
`--link=CONTAINER_NAME:ALIAS`
|
||
選項會在創建容器的時候,添加一個其他容器的主機名到 `/etc/hosts` 文件中,讓新容器的程序可以使用主機名 ALIAS 就可以連接它。
|
||
|
||
`--dns=IP_ADDRESS`
|
||
添加 DNS 服務器到容器的 `/etc/resolv.conf` 中,讓容器用這個服務器來解析所有不在 `/etc/hosts` 中的主機名。
|
||
|
||
`--dns-search=DOMAIN`
|
||
設定容器的搜索域,當設定搜索域為 `.example.com` 時,在搜索一個名為 host 的主機時,DNS 不僅搜索host,還會搜索 `host.example.com`。
|
||
註意:如果沒有上述最後 2 個選項,Docker 會默認用主機上的 `/etc/resolv.conf` 來配置容器。
|