Short Description
Grafana docker image
Full Description
This project builds a container with the latest master build of Grafana.
You can view details following this link: https://github.com/docker-brasil/grafana
Getting the image
docker pull dockerbrasil/grafana
- Running your Grafana image
Start your image binding the external port 3000
.
docker run -i -p 3000:3000 dockerbrasil/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://my-grafana-server.com" \
-e "GF_SECURITY_ADMIN_PASSWORD=secret" \
dockerbrasil/grafana
Docker Pull Command
Owner
dockerbrasil