From 8b6029ca86082123120b733d3a4682b6f9a4eeb9 Mon Sep 17 00:00:00 2001 From: rope Date: Thu, 21 May 2026 14:44:26 +0100 Subject: [PATCH] forgejo-runner: set explicit DNS to fix container resolution Runner containers (via Podman compat) couldn't resolve external hosts after AdGuard stopped binding to 0.0.0.0. Point them at 10.0.0.1. Co-Authored-By: Claude Opus 4.6 --- services/forgejo-runner.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/services/forgejo-runner.nix b/services/forgejo-runner.nix index 608e9c3..65a469c 100644 --- a/services/forgejo-runner.nix +++ b/services/forgejo-runner.nix @@ -30,6 +30,7 @@ # runner falls back to the Forgejo instance's mirror (data.forgejo.org) # which doesn't host most GitHub-marketplace actions. settings.runner.default_actions_url = "https://github.com"; + settings.container.dns_server = "10.0.0.1"; }; }; };