Image to run Node_Exporter for Prometheus on Alpine Linux. #VAIIII
100K+
# docker container run -d --name node-exporter -p 9100:9100 -v /proc:/usr/proc -v /sys:/usr/sys -v /:/rootfs linuxtips/node-exporter_alpine
Open http://your_ip:9100/metrics to access the metrics collected by Node-Exporter .
# docker container logs -f <container_id>
# docker service create --name node-exporter -p 9100:9100 \
--mount type=bind,src=/proc,dst=/usr/proc \
--mount type=bind,src=/sys,dst=/usr/sys \
--mount type=bind,src=/,dst=/rootfs \
linuxtips/node-exporter_alpine
Content type
Image
Digest
Size
7.2 MB
Last updated
almost 7 years ago
Requires Docker Desktop 4.37.1 or later.