Skip to content

Instantly share code, notes, and snippets.

@brtkwr
Created January 27, 2022 07:46
Show Gist options
  • Select an option

  • Save brtkwr/ae8bb55077656ae23698f4991618c851 to your computer and use it in GitHub Desktop.

Select an option

Save brtkwr/ae8bb55077656ae23698f4991618c851 to your computer and use it in GitHub Desktop.
Node exporter via docker-compose.yaml
---
version: '3.3'
services:
node_exporter:
image: quay.io/prometheus/node-exporter:latest
container_name: node_exporter
command:
- '--path.rootfs=/host'
network_mode: host
pid: host
restart: unless-stopped
volumes:
- '/:/host:ro,rslave'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment