From 20081902373096079cdb4183420b8dc660367a9b Mon Sep 17 00:00:00 2001 From: Gianpierre Mio <88248836+DarkCodex29@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:27:37 -0500 Subject: [PATCH] temp: use docker format strings instead of python3 --- .github/workflows/find-impulsa-web.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/find-impulsa-web.yml b/.github/workflows/find-impulsa-web.yml index 255e5ce..665f71b 100644 --- a/.github/workflows/find-impulsa-web.yml +++ b/.github/workflows/find-impulsa-web.yml @@ -10,8 +10,8 @@ jobs: - name: Inspect impulsa_landing container run: | echo "=== Mounts ===" - docker inspect impulsa_landing --format '{{json .Mounts}}' | python3 -m json.tool - echo "=== Labels ===" - docker inspect impulsa_landing --format '{{json .Config.Labels}}' | python3 -m json.tool - echo "=== index.html content ===" - docker exec impulsa_landing cat /usr/share/nginx/html/index.html 2>/dev/null || docker exec impulsa_landing sh -c "find / -name 'index.html' 2>/dev/null | head -5" + docker inspect impulsa_landing --format '{{range .Mounts}}Source={{.Source}} Dest={{.Destination}}{{"\n"}}{{end}}' + echo "=== Traefik labels ===" + docker inspect impulsa_landing --format '{{range $k,$v := .Config.Labels}}{{$k}}={{$v}}{{"\n"}}{{end}}' | grep -i traefik + echo "=== index.html ===" + docker exec impulsa_landing cat /usr/share/nginx/html/index.html