Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gmicroul authored Oct 19, 2024
1 parent d7108b0 commit d849fcc
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ RUN apk update \
&& mkdir /blackbox_exporter \
&& mkdir /grafana \
&& cd /prometheus \
&& curl -LO https://github.com/prometheus/prometheus/releases/download/v2.48.0-rc.2/prometheus-2.48.0-rc.2.linux-amd64.tar.gz \
&& tar -xf prometheus-2.48.0-rc.2.linux-amd64.tar.gz --strip-components=1 \
&& rm prometheus-2.48.0-rc.2.linux-amd64.tar.gz \
&& curl -LO https://github.com/prometheus/prometheus/releases/download/v2.48.0-rc.2/prometheus-2.48.0-rc.2.linux-arm64.tar.gz \
&& tar -xf prometheus-2.48.0-rc.2.linux-arm64.tar.gz --strip-components=1 \
&& rm prometheus-2.48.0-rc.2.linux-arm64.tar.gz \
&& cd /grafana \
&& curl -LO https://dl.grafana.com/enterprise/release/grafana-enterprise-10.2.0.linux-amd64.tar.gz \
&& tar -xf grafana-enterprise-10.2.0.linux-amd64.tar.gz --strip-components=1 \
&& rm grafana-enterprise-10.2.0.linux-amd64.tar.gz \
&& curl -LO https://dl.grafana.com/enterprise/release/grafana-enterprise-10.2.0.linux-arm64.tar.gz \
&& tar -xf grafana-enterprise-10.2.0.linux-arm64.tar.gz --strip-components=1 \
&& rm grafana-enterprise-10.2.0.linux-arm64.tar.gz \
&& cd /blackbox_exporter \
&& curl -LO https://github.com/prometheus/blackbox_exporter/releases/download/v0.24.0/blackbox_exporter-0.24.0.linux-amd64.tar.gz \
&& tar -xf blackbox_exporter-$BLACKBOX_EXPORTER_VERSION.linux-amd64.tar.gz --strip-components=1 \
&& rm blackbox_exporter-$BLACKBOX_EXPORTER_VERSION.linux-amd64.tar.gz
&& curl -LO https://github.com/prometheus/blackbox_exporter/releases/download/v0.24.0/blackbox_exporter-0.24.0.linux-arm64.tar.gz \
&& tar -xf blackbox_exporter-$BLACKBOX_EXPORTER_VERSION.linux-arm64.tar.gz --strip-components=1 \
&& rm blackbox_exporter-$BLACKBOX_EXPORTER_VERSION.linux-arm64.tar.gz
COPY prometheus.yml /prometheus/
COPY blackbox-url.yml /prometheus/
COPY custom.ini /grafana/conf/custom.ini
Expand Down

0 comments on commit d849fcc

Please sign in to comment.