From 47bbdf5d0087da1d1223b7d1d02b48a004bf4943 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sun, 25 Jan 2026 19:06:49 -0800 Subject: [PATCH] Set docker_host for DinD in k8s runner config Job containers need to connect to DinD via TCP, not socket. Co-Authored-By: Claude Opus 4.5 --- argocd/manifests/forgejo-runner/configmap.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/argocd/manifests/forgejo-runner/configmap.yaml b/argocd/manifests/forgejo-runner/configmap.yaml index aa035b1..860f96b 100644 --- a/argocd/manifests/forgejo-runner/configmap.yaml +++ b/argocd/manifests/forgejo-runner/configmap.yaml @@ -15,6 +15,6 @@ data: container: # Use our custom job execution image with Node.js + Docker CLI - # Jobs requesting "docker" label will use this image network: "host" - # DinD doesn't need socket mount - it uses DOCKER_HOST env var + # Connect to DinD sidecar via TCP (not socket) + docker_host: tcp://127.0.0.1:2375