Created
February 13, 2019 16:42
-
-
Save jp/ef0023f13ecad078f91f0a9031a14780 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Start Prometheus node-exporter | |
docker run -d \ | |
--net="host" \ | |
--pid="host" \ | |
-v "/proc:/host/proc:ro" \ | |
-v "/proc:/host/sys:ro" \ | |
--restart always \ | |
--name node-exporter \ | |
quay.io/prometheus/node-exporter:v0.16.0 \ | |
--path.procfs /host/proc \ | |
--path.sysfs /host/sys |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment