diff options
author | Clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 17:09:04 +0200 |
---|---|---|
committer | Clyhtsuriva <aimeric@adjutor.xyz> | 2025-05-24 17:09:04 +0200 |
commit | bd967b68a274f79a0c5f351d228ff9279e0e9a89 (patch) | |
tree | d207feaf70f34c7c9468e83ef43dd9e0fc169e35 /nodeexporter/compose.yaml |
Initial commit
Diffstat (limited to 'nodeexporter/compose.yaml')
-rw-r--r-- | nodeexporter/compose.yaml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nodeexporter/compose.yaml b/nodeexporter/compose.yaml new file mode 100644 index 0000000..a7ea6d5 --- /dev/null +++ b/nodeexporter/compose.yaml @@ -0,0 +1,12 @@ +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: {} |