Files
api-ubigeo/.github/workflows/find-impulsa-web.yml
Gianpierre Mio 87845f725f
All checks were successful
Deploy / deploy (push) Successful in 4m33s
temp: inspect impulsa_landing nginx container
2026-03-10 16:20:12 -05:00

18 lines
636 B
YAML

name: Find Impulsa Web
on:
workflow_dispatch:
jobs:
find:
runs-on: self-hosted
steps:
- 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"