From ff3ac031a9ce7cd61984a7e80609ddcb72f84509 Mon Sep 17 00:00:00 2001 From: Nikholas Pcenicni <82239765+nikpcenicni@users.noreply.github.com> Date: Mon, 29 Dec 2025 03:45:14 -0500 Subject: [PATCH] refactor: restore healthcheck section and properly configure DNS settings in docker compose configuration --- komodo/arr/download-clients/compose.yaml | 34 ++++++++++++------------ 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/komodo/arr/download-clients/compose.yaml b/komodo/arr/download-clients/compose.yaml index a2e29ff..d63ae0e 100644 --- a/komodo/arr/download-clients/compose.yaml +++ b/komodo/arr/download-clients/compose.yaml @@ -90,24 +90,24 @@ services: - /mnt/media/bookdrop:/app/ingest # Set DNS server to prevent EU blocking - #dns: - # - 1.1.1.1 - # - 1.0.0.1 + dns: + - 1.1.1.1 + - 1.0.0.1 - # healthcheck: - # test: - # [ - # "CMD", - # "wget", - # "--no-verbose", - # "--tries=1", - # "--spider", - # "http://127.0.0.1:8286/health", - # ] - # interval: 30s - # timeout: 10s - # start_period: 40s - # retries: 3 + healthcheck: + test: + [ + "CMD", + "wget", + "--no-verbose", + "--tries=1", + "--spider", + "http://127.0.0.1:8286/health", + ] + interval: 30s + timeout: 10s + start_period: 40s + retries: 3 volumes: qbittorrent-pia: ephemera-data: \ No newline at end of file