2018-07-30 11:52:49 -05:00
|
|
|
# Grafana Docker image
|
|
|
|
|
2019-10-09 02:41:11 -05:00
|
|
|
This topic contains instructions for installing Grafana using the Docker image.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
2019-10-09 02:41:11 -05:00
|
|
|
## Run the Grafana Docker container
|
|
|
|
|
|
|
|
Start the Docker container by binding Grafana to external port `3000`.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
|
|
|
```bash
|
|
|
|
docker run -d --name=grafana -p 3000:3000 grafana/grafana
|
|
|
|
```
|
|
|
|
|
2019-10-09 02:41:11 -05:00
|
|
|
Try it out, default admin user credentials are admin/admin.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
2019-10-09 02:41:11 -05:00
|
|
|
Further documentation can be found at http://docs.grafana.org/installation/docker/.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
|
|
|
## Changelog
|
|
|
|
|
2019-08-16 10:46:35 -05:00
|
|
|
### v6.4.0-pre1
|
|
|
|
|
2020-10-02 13:02:11 -05:00
|
|
|
- Switched base image from Ubuntu:18.04 to Alpine:3.10.
|
2019-08-16 10:46:35 -05:00
|
|
|
|
2019-08-07 04:12:57 -05:00
|
|
|
### v6.3.0-beta2
|
2020-10-02 13:02:11 -05:00
|
|
|
- Switched base image from Ubuntu:latest to Ubuntu:18.04.
|
2019-08-07 04:12:57 -05:00
|
|
|
|
2019-07-17 11:24:09 -05:00
|
|
|
### v6.3.0-beta1
|
2020-10-02 13:02:11 -05:00
|
|
|
- Switched base image to Ubuntu:latest from Debian:stretch to avoid security issues.
|
2019-07-17 11:24:09 -05:00
|
|
|
|
|
|
|
### v5.4.3
|
2020-10-02 13:02:11 -05:00
|
|
|
- Added ability to build and publish Docker images for armv7 and arm64, #14617, thx @johanneswuerbach.
|
2019-07-17 11:24:09 -05:00
|
|
|
|
|
|
|
### v5.3.2
|
2020-10-02 13:02:11 -05:00
|
|
|
- Added Curl back into the Docker image for utility, #13794.
|
2019-07-17 11:24:09 -05:00
|
|
|
|
|
|
|
### v5.3.0-beta1
|
2020-10-02 13:02:11 -05:00
|
|
|
- Made it possible to set a specific plugin URL, #12861, thx ClementGautier.
|
2019-07-17 11:24:09 -05:00
|
|
|
|
2018-07-30 11:52:49 -05:00
|
|
|
### v5.1.5, v5.2.0-beta2
|
2020-10-02 13:02:11 -05:00
|
|
|
- Fixed: config keys ending with _FILE are not respected [#170](https://github.com/grafana/grafana-docker/issues/170).
|
2018-07-30 11:52:49 -05:00
|
|
|
|
|
|
|
### v5.2.0-beta1
|
2020-10-02 13:02:11 -05:00
|
|
|
- Added support for Docker secrets.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
|
|
|
### v5.1.0
|
2020-10-02 13:02:11 -05:00
|
|
|
- Major restructuring of the container.
|
|
|
|
- Removed usage of `chown`.
|
|
|
|
- Fixed file permissions incompatibility with previous versions.
|
2019-10-09 02:41:11 -05:00
|
|
|
* user id changed from 104 to 472.
|
|
|
|
* group id changed from 107 to 472.
|
2020-10-02 13:02:11 -05:00
|
|
|
- Runs as the Grafana user by default (instead of root).
|
|
|
|
- Removed all default volumes.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
|
|
|
### v4.2.0
|
2020-10-02 13:02:11 -05:00
|
|
|
- Plugins are now installed into ${GF_PATHS_PLUGINS}.
|
|
|
|
- Building the container now requires a full URL to the Debian package instead of just the version.
|
|
|
|
- Fixed bug caused by installing multiple plugins.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
|
|
|
### v4.0.0-beta2
|
2020-10-02 13:02:11 -05:00
|
|
|
- Plugins dir (`/var/lib/grafana/plugins`) is no longer a separate volume.
|
2018-07-30 11:52:49 -05:00
|
|
|
|
|
|
|
### v3.1.1
|
2020-10-02 13:02:11 -05:00
|
|
|
- Made it possible to install specific plugin version https://github.com/grafana/grafana-docker/issues/59#issuecomment-260584026.
|