Files
infrastructure/hosts/ps10rp/node-exporter/compose.yaml
Renovate Bot 879a7390de
All checks were successful
lint-test-docker / lint-docker-compose (push) Successful in 36s
render-manifests-dispatch / render-manifests-dispatch (push) Successful in 22m31s
renovate / renovate (push) Successful in 1m58s
chore(deps): update ghcr.io/tailscale/tailscale docker tag to v1.94.2 (#3994)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [ghcr.io/tailscale/tailscale](https://tailscale.com/kb/1282/docker) ([source](https://github.com/tailscale/tailscale)) | patch | `v1.94.1` → `v1.94.2` |

---

### Release Notes

<details>
<summary>tailscale/tailscale (ghcr.io/tailscale/tailscale)</summary>

### [`v1.94.2`](https://github.com/tailscale/tailscale/compare/v1.94.1...v1.94.2)

[Compare Source](https://github.com/tailscale/tailscale/compare/v1.94.1...v1.94.2)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zLjYiLCJ1cGRhdGVkSW5WZXIiOiI0My4zLjYiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImltYWdlIl19-->

Reviewed-on: #3994
Co-authored-by: Renovate Bot <renovate-bot@alexlebens.net>
Co-committed-by: Renovate Bot <renovate-bot@alexlebens.net>
2026-02-15 23:17:21 +00:00

34 lines
924 B
YAML

---
services:
tailscale-node-exporter:
image: ghcr.io/tailscale/tailscale:v1.94.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.10.2
container_name: node-exporter
command:
- '--path.rootfs=/rootfs'
pid: host
restart: always
volumes:
- /:/rootfs:ro
volumes:
tailscale: