- traefik/compose.yml: flip --api.dashboard=true so Traefik's internal API is reachable. No entrypoint named "traefik" is defined, so Traefik auto-creates its default one on :8080 - not published to the host (only 80/443 are), so it's reachable only from other containers on falcon_network, i.e. exactly (and only) pulsenode. - pulsenode/config.yml: adds a system widget and swaps the plain Traefik docker card for the real traefik widget (router/entrypoint/ middleware view via that now-enabled API), both at the top of Services. Verified locally before deploying: a plain container (no pid: host, no /proc,/sys mounts) already reports host-accurate CPU count, memory total, and root disk usage via systeminformation, since Docker doesn't namespace /proc/stat, /proc/meminfo, or overlayfs df by default. No privilege escalation needed for the system widget after all - tested side by side against the real host's nproc/free/df output. Also confirmed the merged config.yml validates against the app's own zod schema, not just as YAML.
72 lines
1.5 KiB
YAML
72 lines
1.5 KiB
YAML
settings:
|
|
title: PulseNode
|
|
|
|
theme:
|
|
mode: dark
|
|
|
|
groups:
|
|
- name: Services
|
|
widgets:
|
|
- type: system
|
|
interval: 5s
|
|
|
|
- type: traefik
|
|
name: Traefik
|
|
apiUrl: http://traefik:8080/api
|
|
interval: 15s
|
|
|
|
- type: docker
|
|
name: Coolify
|
|
containerName: coolify
|
|
icon: coolify
|
|
href: https://${TRAEFIK_HOST_COOLIFY}
|
|
interval: 10s
|
|
|
|
- type: docker
|
|
name: Gitea
|
|
containerName: gitea
|
|
icon: gitea
|
|
href: https://${TRAEFIK_HOST_GITEA}
|
|
interval: 10s
|
|
|
|
- type: docker
|
|
name: Code Server
|
|
containerName: code
|
|
href: https://${TRAEFIK_HOST_CODE}
|
|
interval: 10s
|
|
|
|
- type: docker
|
|
name: Immich
|
|
containerName: immich
|
|
icon: immich
|
|
href: https://${TRAEFIK_HOST_IMMICH}
|
|
interval: 10s
|
|
|
|
- type: docker
|
|
name: n8n
|
|
containerName: n8n
|
|
icon: n8n
|
|
href: https://${TRAEFIK_HOST_N8N}
|
|
interval: 10s
|
|
|
|
- type: docker
|
|
name: Passbolt
|
|
containerName: passbolt
|
|
icon: passbolt
|
|
href: https://${TRAEFIK_HOST_PASSBOLT}
|
|
interval: 10s
|
|
|
|
- type: docker
|
|
name: Umami
|
|
containerName: umami
|
|
icon: umami
|
|
href: https://${TRAEFIK_HOST_UMAMI}
|
|
interval: 10s
|
|
|
|
- type: docker
|
|
name: Headscale
|
|
containerName: headscale
|
|
icon: headscale
|
|
href: https://${TRAEFIK_HOST_HEADSCALE}
|
|
interval: 10s
|