2021-02-24 12:31:41 +01:00
|
|
|
---
|
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
services:
|
|
|
|
node_exporter:
|
2021-07-19 12:08:51 +02:00
|
|
|
image: ${NODE_EXPORTER_IMAGE:-quay.io/prometheus/node-exporter:v1.2.0}
|
2021-02-24 12:31:41 +01:00
|
|
|
container_name: node_exporter
|
|
|
|
command:
|
2021-05-04 16:11:05 +02:00
|
|
|
- '--path.rootfs=/host --collector.textfile.directory=/host/var/lib/node_exporter/textfile_collector'
|
2021-02-24 12:31:41 +01:00
|
|
|
network_mode: host
|
|
|
|
pid: host
|
|
|
|
restart: unless-stopped
|
|
|
|
expose:
|
|
|
|
- 9100
|
|
|
|
volumes:
|
|
|
|
- '/:/host:ro,rslave'
|