diff --git a/docker-compose.yml b/docker-compose.yml index 003e9fb8..4384153a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.7' services: grafana: - image: grafana/grafana-enterprise:8.2.5 + image: grafana/grafana-enterprise:8.3.0 container_name: yesoreyeram-infinity-datasource ports: - '3000:3000' diff --git a/heroku.Dockerfile b/heroku.Dockerfile index 896f7af4..2f4f41d5 100644 --- a/heroku.Dockerfile +++ b/heroku.Dockerfile @@ -1,5 +1,5 @@ # Inspired by https://github.com/xiz-kak/grafana-on-heroku -FROM grafana/grafana-enterprise:8.2.5 +FROM grafana/grafana-enterprise:8.3.0 ENV GF_INSTALL_PLUGINS https://github.com/yesoreyeram/grafana-infinity-datasource/releases/download/v0.8.0-dev.7/yesoreyeram-infinity-datasource-0.8.0-dev.7.zip;yesoreyeram-infinity-datasource,grafana-worldmap-panel,grafana-clock-panel,yesoreyeram-boomtheme-panel,yesoreyeram-boomtable-panel,https://github.com/yesoreyeram/yesoreyeram-boomsummary-panel/archive/deecb03210355a7ddd1dfca00474b0bcc28b9b4a.zip;yesoreyeram-boomsummary-panel,https://github.com/yesoreyeram/grafana-boomcomments-panel/archive/2bcba5987e930f18c64e4b648ce49a01639ded8f.zip;yesoreyeram-boomcomments-panel,https://github.com/yesoreyeram/grafana-infinity-panel/archive/90648a35cb87948b27bc6a28f5308b21f1b0880c.zip;yesoreyeram-infinity-panel,https://github.com/yesoreyeram/grafana-slideshow-panel/releases/download/v0.0.1/yesoreyeram-slideshow-panel-0.0.1.zip;yesoreyeram-slideshow-panel,grafana-guidedtour-panel ADD ./try/heroku.sh / ADD ./try/grafana.ini /etc/grafana/grafana.ini diff --git a/website/src/wiki/installation.md b/website/src/wiki/installation.md index 8be54424..7654c3fa 100644 --- a/website/src/wiki/installation.md +++ b/website/src/wiki/installation.md @@ -65,11 +65,11 @@ plugins: With docker, you can install the plugin using the following command. This will download the latest published version of the plugin from grafana plugins directory. ```shell -docker run -p 3000:3000 -e "GF_INSTALL_PLUGINS=yesoreyeram-infinity-datasource" grafana/grafana-enterprise:8.2.5 +docker run -p 3000:3000 -e "GF_INSTALL_PLUGINS=yesoreyeram-infinity-datasource" grafana/grafana-enterprise:8.3.0 ``` If you need to install a custom version of the plugin with docker, use the following command. ```shell -docker run -p 3000:3000 -e "GF_INSTALL_PLUGINS=https://github.com/yesoreyeram/grafana-infinity-datasource/releases/download/v0.8.0-dev.7/yesoreyeram-infinity-datasource-0.8.0-dev.7.zip;yesoreyeram-infinity-datasource" grafana/grafana-enterprise:8.2.5 +docker run -p 3000:3000 -e "GF_INSTALL_PLUGINS=https://github.com/yesoreyeram/grafana-infinity-datasource/releases/download/v0.8.0-dev.7/yesoreyeram-infinity-datasource-0.8.0-dev.7.zip;yesoreyeram-infinity-datasource" grafana/grafana-enterprise:8.3.0 ```