From 7f7b03757dc7e14de8285c35d3ceabb63e5f0812 Mon Sep 17 00:00:00 2001 From: Karol Wypchlo Date: Wed, 23 Jun 2021 14:53:33 +0200 Subject: [PATCH] try increased timeouts --- packages/health-check/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/health-check/Dockerfile b/packages/health-check/Dockerfile index 7560057e..3346da3a 100644 --- a/packages/health-check/Dockerfile +++ b/packages/health-check/Dockerfile @@ -23,8 +23,8 @@ ENV NODE_ENV production # 3. start crond in the background # 4. start the health-check api service CMD [ "sh", "-c", \ - "echo -e \"nameserver 127.0.0.1\n$(cat /etc/resolv.conf)\" > /etc/resolv.conf ; \ - dnsmasq --strict-order --address=/siasky.net/$(node src/whatismyip.js) ; \ + "echo -e \"nameserver 127.0.0.1\n$(cat /etc/resolv.conf)\noptions attempts:5\noptions timeout:30\" > /etc/resolv.conf ; \ + dnsmasq --no-resolv --log-queries --log-facility=/var/log/dnsmasq.log --address=/siasky.net/$(node src/whatismyip.js) ; \ crond ; \ node --max-http-header-size=64000 src/index.js" \ ]