Files
infrastructure/hosts/ps10rp/node-exporter/compose.yaml
Renovate Bot e9b4c44aa0
Some checks failed
renovate / renovate (push) Has been cancelled
lint-test-docker / docker-lint (push) Failing after 7s
lint-test-helm / helm-lint (pull_request) Successful in 6s
lint-test-docker / docker-lint (pull_request) Successful in 19s
Update ghcr.io/tailscale/tailscale Docker tag to v1.84.3
2025-06-26 19:02:30 +00:00

34 lines
923 B
YAML

---
services:
tailscale-node-exporter:
image: ghcr.io/tailscale/tailscale:v1.84.3
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: