The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docker/production
Torkel Ödegaard 2ca849c0c4 Changed docker image to debian:jessie 10 years ago
..
Dockerfile Changed docker image to debian:jessie 10 years ago
README.md Updated docker build, added test container script, added docker readme 10 years ago
build.sh Updated docker build, added test container script, added docker readme 10 years ago
test_container.sh Updated docker build, added test container script, added docker readme 10 years ago

README.md

Grafana docker image

This container currently only contains the in development alpha of Grafana 2.0 (ie non production use). The #develop tag is constantly updated as we make progress torwards a beta release.

Running your Grafana image


Start your image binding the external port 3000.

docker run -i -p 3000:3000 grafana/grafana

Try it out, default admin user is admin/admin.

Configuring your Grafana container

All options defined in conf/grafana.ini can be overriden using environment variables, for example:

docker run -i -p 3000:3000 \
  -e "GF_SERVER_ROOT_URL=http://grafana.server.name"  \
  -e "GF_SECURITY_ADMIN_PASSWORD=secret  \
  grafana/grafana:develop