java.net.UnknownHostException on Docker

前端 未结 2 1483
耶瑟儿~
耶瑟儿~ 2020-12-05 16:27

I am trying to create docker containers for ZooKeeper and configure them in cluster mode (full code is here and here).

Containers are based on Alpine Linux (alpine:3

2条回答
  •  有刺的猬
    2020-12-05 16:54

    I managed to get rid of the DNS issues by switching to Oracle JRE 8 and using the following hack in the Dockerfile:

    RUN echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf
    

    I created a working Java 8 docker container container on Docker Hub (the code is on github).

提交回复
热议问题