trancekat

Members
  • Posts

    1
  • Joined

  • Last visited

trancekat's Achievements

Noob

Noob (1/14)

0

Reputation

  1. Hi there, I hope you can point me in the correct direction. I'm using binhex/delugevpn with great success, except for a healthcheck working properly. I believe the issue is related to the inabilty to resolve the names of other containers. For a healthcheck i am using: curl http://<other_container_name>:8888/api/health?apiKey=secret_api_key 2>&1 | grep -q error ;if [ "$$?" -eq 1 ]; then exit 0; else exit 1; fi This fails. When I attempt to do an nslookup <other_container_name> I get nslookup <other_container_name> Server: 84.200.69.80 Address: 84.200.69.80#53 ** server can't find <other_container_name>: NXDOMAIN How can I get local name resolution, please?