From 87845f725f69e5d1be22b9c4c1c1c713dafe132e Mon Sep 17 00:00:00 2001 From: Gianpierre Mio <88248836+DarkCodex29@users.noreply.github.com> Date: Tue, 10 Mar 2026 16:20:12 -0500 Subject: [PATCH] temp: inspect impulsa_landing nginx container --- .github/workflows/find-impulsa-web.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/find-impulsa-web.yml b/.github/workflows/find-impulsa-web.yml index 31f7cad..255e5ce 100644 --- a/.github/workflows/find-impulsa-web.yml +++ b/.github/workflows/find-impulsa-web.yml @@ -7,13 +7,11 @@ jobs: find: runs-on: self-hosted steps: - - name: Docker containers with impulsa - run: docker ps --format "{{.Names}} {{.Image}} {{.Ports}}" - - - name: Traefik config for impulsa + - name: Inspect impulsa_landing container run: | - docker run --rm -v /etc/easypanel/traefik/config:/cfg alpine sh -c \ - 'grep -B2 -A 8 "impulsa.darkcodex.dev" /cfg/main.yaml' - - - name: Easypanel projects - run: ls /etc/easypanel/projects/ 2>/dev/null || echo "no projects dir" + 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"