From 4754c69e015b634085eed63ed7362e0cdb75cd09 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Mon, 4 May 2026 14:10:25 -0500 Subject: [PATCH] fix: mount /var/run/docker.sock (Docker Engine) not containerd socket --- servers/legion/k8s/gitea-runner/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers/legion/k8s/gitea-runner/deployment.yaml b/servers/legion/k8s/gitea-runner/deployment.yaml index 7a0cfae..6a32df9 100644 --- a/servers/legion/k8s/gitea-runner/deployment.yaml +++ b/servers/legion/k8s/gitea-runner/deployment.yaml @@ -80,7 +80,7 @@ spec: emptyDir: {} - name: docker-sock hostPath: - path: /run/k3s/containerd/containerd.sock + path: /var/run/docker.sock type: Socket --- # Gitea Actions runner — neuron-technologies org @@ -164,5 +164,5 @@ spec: emptyDir: {} - name: docker-sock hostPath: - path: /run/k3s/containerd/containerd.sock + path: /var/run/docker.sock type: Socket