Skip to the content.

docker容器添加自定义hosts

方案一

启动时增加hosts,参考自docker docs

docker run -d --name test1 \
    --add-host test1.a:1.2.3.4 \
    local/test
123

方案二

docker-compose.yml文件指定,参考自stackoverflow

test2:
  build: local/test
  extra_hosts:
    test1.a: 1.2.3.4
    test1.b: 4.3.2.1