Files
api-ubigeo/.github/workflows/find-impulsa-web.yml
Gianpierre Mio 2008190237
All checks were successful
Deploy / deploy (push) Successful in 4m13s
temp: use docker format strings instead of python3
2026-03-10 16:27:37 -05:00

18 lines
603 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 '{{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