当前位置: 代码迷 >> 综合 >> docker 容器自定义 hosts 网络访问
  详细解决方案

docker 容器自定义 hosts 网络访问

热度:76   发布时间:2023-10-21 09:58:12.0

在 docker-compose.yml 中增加 extra_hosts 关键字就可以将数据写入到容器的 /etc/hosts。

extra_hosts
添加主机名映射。

extra_hosts:

  • “somehost:162.242.195.82”
  • “otherhost:50.31.209.229”
    将会在/etc/hosts创建记录:

162.242.195.82 somehost
50.31.209.229 otherhost

注意:如果指向的是本机,不要写容器的ip,(因为IP重启后会变,除非你给容器设置固定ip)
而是写宿主机的ip,如192.168.xxx.xxx

  相关解决方案