From e1c517afa314bc3bc98fc2ab681b9dfd6f706480 Mon Sep 17 00:00:00 2001 From: jad0s Date: Wed, 20 May 2026 15:57:19 +0200 Subject: [PATCH] test(actions): check if the docker daemon is reachable on loopback addresses --- .forgejo/workflows/validate.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.forgejo/workflows/validate.yaml b/.forgejo/workflows/validate.yaml index 1c3a251..7ba2c03 100644 --- a/.forgejo/workflows/validate.yaml +++ b/.forgejo/workflows/validate.yaml @@ -31,6 +31,11 @@ jobs: -schema-location default \ -schema-location 'https://raw.githubusercontent.com/datreeio/CRDs-catalog/main/{{.Group}}/{{.ResourceKind}}_{{.ResourceAPIVersion}}.json' \ ./manifests/ + - name: Debug docker + run: | + cat /etc/hosts + wget -O- http://172.17.0.1:2375/info 2>&1 || true + wget -O- http://172.18.0.1:2375/info 2>&1 || true - name: Install k3d run: | curl -fsSL -o /tmp/k3d https://github.com/k3d-io/k3d/releases/download/v5.7.4/k3d-linux-amd64