Skip to content

Commit 02eb981

Browse files
committed
debugging containers config
1 parent 19a9f92 commit 02eb981

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/build-test.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,20 @@ jobs:
211211
go-version-file: go.mod
212212
cache: true
213213

214+
- name: Debug registries.conf
215+
run: |
216+
echo "=== /etc/containers/registries.conf ==="
217+
cat /etc/containers/registries.conf 2>/dev/null || echo "(not found)"
218+
echo "=== /etc/containers/registries.conf.d/ ==="
219+
ls -la /etc/containers/registries.conf.d/ 2>/dev/null || echo "(dir not found)"
220+
for f in /etc/containers/registries.conf.d/*; do
221+
[ -f "$f" ] && echo "--- $f ---" && cat "$f"
222+
done
223+
echo "=== ~/.config/containers/registries.conf ==="
224+
cat ~/.config/containers/registries.conf 2>/dev/null || echo "(not found)"
225+
echo "=== podman version ==="
226+
podman version 2>/dev/null || echo "(podman not found)"
227+
214228
- name: test
215229
run: make ci-test
216230

0 commit comments

Comments
 (0)