From 33b7f0f35396ae7b5d86a2b8de608a8230354865 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Tue, 24 Feb 2026 21:01:08 -0800 Subject: [PATCH] Switch prometheus, teslamate, miniflux to forge mirrors Created miniflux mirror at mirrors/miniflux. All three containers now clone from forge.ops.eblu.me/mirrors/ instead of GitHub directly. Co-Authored-By: Claude Opus 4.6 --- containers/miniflux/Dockerfile | 2 +- containers/prometheus/Dockerfile | 4 ++-- containers/teslamate/Dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/containers/miniflux/Dockerfile b/containers/miniflux/Dockerfile index 11fe559..83a1034 100644 --- a/containers/miniflux/Dockerfile +++ b/containers/miniflux/Dockerfile @@ -11,7 +11,7 @@ RUN apk add --no-cache build-base git make # Clone specific version RUN git clone --depth 1 --branch ${MINIFLUX_VERSION} \ - https://github.com/miniflux/v2.git /go/src/app + https://forge.ops.eblu.me/mirrors/miniflux.git /go/src/app WORKDIR /go/src/app RUN make miniflux diff --git a/containers/prometheus/Dockerfile b/containers/prometheus/Dockerfile index d0a02af..973ceb6 100644 --- a/containers/prometheus/Dockerfile +++ b/containers/prometheus/Dockerfile @@ -10,7 +10,7 @@ ARG PROMETHEUS_VERSION RUN apk add --no-cache git bash RUN git clone --depth 1 --branch ${PROMETHEUS_VERSION} \ - https://github.com/prometheus/prometheus.git /app + https://forge.ops.eblu.me/mirrors/prometheus.git /app WORKDIR /app/web/ui @@ -29,7 +29,7 @@ ARG PROMETHEUS_VERSION RUN apk add --no-cache build-base git bash RUN git clone --depth 1 --branch ${PROMETHEUS_VERSION} \ - https://github.com/prometheus/prometheus.git /app + https://forge.ops.eblu.me/mirrors/prometheus.git /app WORKDIR /app diff --git a/containers/teslamate/Dockerfile b/containers/teslamate/Dockerfile index eaeea81..c3e1a62 100644 --- a/containers/teslamate/Dockerfile +++ b/containers/teslamate/Dockerfile @@ -28,7 +28,7 @@ RUN mix local.rebar --force && \ # Clone specific version RUN git clone --depth 1 --branch ${TESLAMATE_VERSION} \ - https://github.com/teslamate-org/teslamate.git /opt/app + https://forge.ops.eblu.me/mirrors/teslamate.git /opt/app ENV MIX_ENV=prod WORKDIR /opt/app