Last active
August 29, 2015 14:13
-
-
Save navicore/0aedfa875a57099c0903 to your computer and use it in GitHub Desktop.
docker command to init and run grafana with running influxdb
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
| # 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