diff --git a/README.md b/README.md index 49e307c..ed5e4c9 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ systemctl enable node_exporter systemctl status node_exporter -##Node Exporter mit Docker starten (Alternative) +## Node Exporter mit Docker starten (Alternative)
docker run -d \
   --net="host" \
@@ -130,4 +130,14 @@ systemctl status node_exporter
--restart=always \ -v "/:/host:ro,rslave" \ quay.io/prometheus/node-exporter:latest \ - --path.rootfs=/host \ No newline at end of file + --path.rootfs=/host + + + ## Grafana Docker installieren + +
docker run \
+	-p 3000:3000 \
+	-v grafana-data:/var/lib/grafana \
+	--restart=always \
+	--name grafana \
+	grafana/grafana:latest
\ No newline at end of file