blob: 6461159e60df1a9e7d6cf109ccc7b2d55f59e2a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
services:
node_exporter:
image: quay.io/prometheus/node-exporter:v1.8.2
ports:
- 10.0.0.1:9100:9100
container_name: node_exporter
command: --path.rootfs=/host
pid: host
restart: unless-stopped
volumes:
- /:/host:ro,rslave
networks: {}
...
|