mirror of
https://github.com/grafana/grafana.git
synced 2025-01-15 19:22:34 -06:00
d12c808279
* Docker: fix renderer plugin in custom Dockerfile * Update Dockerfile
65 lines
2.3 KiB
Docker
65 lines
2.3 KiB
Docker
ARG GRAFANA_VERSION="latest"
|
|
|
|
FROM grafana/grafana:${GRAFANA_VERSION}
|
|
|
|
ARG GF_INSTALL_IMAGE_RENDERER_PLUGIN="false"
|
|
|
|
ARG GF_GID="0"
|
|
|
|
ENV GF_PATHS_PLUGINS="/var/lib/grafana-plugins"
|
|
ENV GF_PLUGIN_RENDERING_CHROME_BIN="/usr/bin/chrome"
|
|
|
|
USER root
|
|
|
|
RUN mkdir -p "$GF_PATHS_PLUGINS" && \
|
|
chown -R grafana:${GF_GID} "$GF_PATHS_PLUGINS" && \
|
|
if [ $GF_INSTALL_IMAGE_RENDERER_PLUGIN = "true" ]; then \
|
|
if grep -i -q alpine /etc/issue; then \
|
|
apk add --no-cache udev ttf-opensans chromium && \
|
|
ln -s /usr/bin/chromium-browser "$GF_PLUGIN_RENDERING_CHROME_BIN"; \
|
|
else \
|
|
cd /tmp && \
|
|
curl -sLO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \
|
|
DEBIAN_FRONTEND=noninteractive && \
|
|
apt-get update -q && \
|
|
apt-get install -q -y ./google-chrome-stable_current_amd64.deb && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
rm ./google-chrome-stable_current_amd64.deb && \
|
|
ln -s /usr/bin/google-chrome "$GF_PLUGIN_RENDERING_CHROME_BIN"; \
|
|
fi \
|
|
fi
|
|
|
|
USER grafana
|
|
|
|
RUN if [ $GF_INSTALL_IMAGE_RENDERER_PLUGIN = "true" ]; then \
|
|
if grep -i -q alpine /etc/issue; then \
|
|
grafana-cli \
|
|
--pluginsDir "$GF_PATHS_PLUGINS" \
|
|
--pluginUrl https://github.com/grafana/grafana-image-renderer/releases/latest/download/plugin-alpine-x64-no-chromium.zip \
|
|
plugins install grafana-image-renderer; \
|
|
else \
|
|
grafana-cli \
|
|
--pluginsDir "$GF_PATHS_PLUGINS" \
|
|
--pluginUrl https://github.com/grafana/grafana-image-renderer/releases/latest/download/plugin-linux-x64-glibc-no-chromium.zip \
|
|
plugins install grafana-image-renderer; \
|
|
fi \
|
|
fi
|
|
|
|
ARG GF_INSTALL_PLUGINS=""
|
|
|
|
RUN if [ ! -z "${GF_INSTALL_PLUGINS}" ]; then \
|
|
OLDIFS=$IFS; \
|
|
IFS=','; \
|
|
set -e ; \
|
|
for plugin in ${GF_INSTALL_PLUGINS}; do \
|
|
IFS=$OLDIFS; \
|
|
if expr match "$plugin" '.*\;.*'; then \
|
|
pluginUrl=$(echo "$plugin" | cut -d';' -f 1); \
|
|
pluginInstallFolder=$(echo "$plugin" | cut -d';' -f 2); \
|
|
grafana-cli --pluginUrl ${pluginUrl} --pluginsDir "${GF_PATHS_PLUGINS}" plugins install "${pluginInstallFolder}"; \
|
|
else \
|
|
grafana-cli --pluginsDir "${GF_PATHS_PLUGINS}" plugins install ${plugin}; \
|
|
fi \
|
|
done \
|
|
fi
|