Start your container binding the external port 3000
.
docker run -d --name=grafana -p 3000:3000 grafana/grafana
Try it out, default admin user is admin/admin.
Further documentation can be found at http://docs.grafana.org/installation/docker/
- Fix: config keys ending with _FILE are not respected #170
- Support for Docker Secrets
- Major restructuring of the container
- Usage of
chown
removed - File permissions incompatibility with previous versions
- user id changed from 104 to 472
- group id changed from 107 to 472
- Runs as the grafana user by default (instead of root)
- All default volumes removed
- Plugins are now installed into ${GF_PATHS_PLUGINS}
- Building the container now requires a full url to the deb package instead of just version
- Fixes bug caused by installing multiple plugins
- Plugins dir (
/var/lib/grafana/plugins
) is no longer a separate volume
- Make it possible to install specific plugin version grafana#59 (comment)