Skip to content

Instantly share code, notes, and snippets.

@navicore
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save navicore/0aedfa875a57099c0903 to your computer and use it in GitHub Desktop.

Select an option

Save navicore/0aedfa875a57099c0903 to your computer and use it in GitHub Desktop.
docker command to init and run grafana with running influxdb
# docker command to init and run grafana with running influxdb
docker run -d --name grafana -p 8080:80 -e INFLUXDB_HOST=192.168.59.103 -e INFLUXDB_PORT=8086 -e INFLUXDB_NAME=pollen -e INFLUXDB_USER=root -e INFLUXDB_PASS=root tutum/grafana
# after running, check logs for password `docker logs grafana`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment