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