From 5423403c5e87d77146aae0e3251d52d889b9d90e Mon Sep 17 00:00:00 2001 From: Steven Schenider Date: Mon, 17 Jul 2017 12:41:05 -0700 Subject: [PATCH] Updating notes --- grafana/run.sh | 1 + influxdb/run.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/grafana/run.sh b/grafana/run.sh index 223dda8..02436e3 100644 --- a/grafana/run.sh +++ b/grafana/run.sh @@ -1,2 +1,3 @@ #We use the grafana image that Grafana Labs provides http://docs.grafana.org/installation/docker/ +# If you wish to modify the port that Grafana runs on, you can do that here. sudo docker run -d -p 3000:3000 --name grafana grafana/grafana diff --git a/influxdb/run.sh b/influxdb/run.sh index 80dc3d7..3ee5339 100644 --- a/influxdb/run.sh +++ b/influxdb/run.sh @@ -1,5 +1,6 @@ #!/bin/bash +# By default, this will run without modification, but if you want to change where the data directory gets mapped, you can do that here # Make sure this folder exists on the host. # This directory from the host gets passed through to the docker container. INFLUXDB_HOST_DIRECTORY="/mnt/influxdb"