Files
infrastructure/hosts/ps10rp/node-exporter/compose.yaml
Renovate Bot 15c508a4d4
All checks were successful
lint-test-docker / docker-lint (pull_request) Successful in 10s
lint-test-helm / helm-lint (pull_request) Successful in 12s
Update ghcr.io/tailscale/tailscale Docker tag to v1.86.2
2025-07-31 19:03:40 +00:00

34 lines
923 B
YAML

---
services:
tailscale-node-exporter:
image: ghcr.io/tailscale/tailscale:v1.86.2
container_name: tailscale-node-exporter
cap_add:
- net_admin
- sys_module
environment:
- TS_STATE_DIR=/var/lib/tailscale
- TS_ENABLE_METRICS=true
- TS_HOSTNAME=node-exporter-ps10rp
- TS_SERVE_CONFIG=/config/serve.json
network_mode: service:node-exporter
restart: always
volumes:
- tailscale:/var/lib/tailscale
- ${PWD}/serve.json:/config/serve.json
devices:
- /dev/net/tun:/dev/net/tun
node-exporter:
image: quay.io/prometheus/node-exporter:v1.9.1
container_name: node-exporter
command:
- '--path.rootfs=/rootfs'
pid: host
restart: always
volumes:
- /:/rootfs:ro
volumes:
tailscale: