From 73c7c5bea2e5cfb17ca9ce88a58b1c2253737062 Mon Sep 17 00:00:00 2001 From: Elliot Smith Date: Mon, 13 Jan 2025 11:30:52 +0000 Subject: [PATCH] Fix waitforit ref to point at new repo --- api/docker/app/Dockerfile | 2 +- api/docker/web/Dockerfile | 2 +- client/docker/app/Dockerfile | 2 +- client/docker/web/Dockerfile | 2 +- wait-for-it/Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/docker/app/Dockerfile b/api/docker/app/Dockerfile index 70a3406cde..22ad5e5a8e 100644 --- a/api/docker/app/Dockerfile +++ b/api/docker/app/Dockerfile @@ -52,7 +52,7 @@ RUN wget -q -O /usr/local/bin/confd "https://github.com/kelseyhightower/confd/re && chmod +x /usr/local/bin/confd # Add Waitforit to wait on db starting ENV WAITFORIT_VERSION="v2.4.1" -RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxcnunes/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ +RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxclaus/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ && chmod +x /usr/local/bin/waitforit # Create var directories diff --git a/api/docker/web/Dockerfile b/api/docker/web/Dockerfile index 48650ae411..f1b6514008 100644 --- a/api/docker/web/Dockerfile +++ b/api/docker/web/Dockerfile @@ -10,7 +10,7 @@ RUN wget -q -O /usr/local/bin/confd "https://github.com/kelseyhightower/confd/re # Add Waitforit to wait on app starting ENV WAITFORIT_VERSION="v2.4.1" -RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxcnunes/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ +RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxclaus/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ && chmod +x /usr/local/bin/waitforit COPY --chown=nginx api/docker/web/confd /etc/confd diff --git a/client/docker/app/Dockerfile b/client/docker/app/Dockerfile index 1ff39c06c2..1df048279a 100644 --- a/client/docker/app/Dockerfile +++ b/client/docker/app/Dockerfile @@ -56,7 +56,7 @@ RUN wget -q -O /usr/local/bin/confd "https://github.com/kelseyhightower/confd/re && chmod +x /usr/local/bin/confd # Add Waitforit to wait on API starting ENV WAITFORIT_VERSION="v2.4.1" -RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxcnunes/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ +RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxclaus/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ && chmod +x /usr/local/bin/waitforit # Create var directories diff --git a/client/docker/web/Dockerfile b/client/docker/web/Dockerfile index 07c5d4ce1c..64f984d021 100644 --- a/client/docker/web/Dockerfile +++ b/client/docker/web/Dockerfile @@ -11,7 +11,7 @@ RUN wget -q -O /usr/local/bin/confd "https://github.com/kelseyhightower/confd/re # Add Waitforit to wait on app starting ENV WAITFORIT_VERSION="v2.4.1" -RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxcnunes/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ +RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxclaus/waitforit/releases/download/$WAITFORIT_VERSION/waitforit-linux_amd64 \ && chmod +x /usr/local/bin/waitforit COPY --chown=nginx client/docker/web/confd /etc/confd diff --git a/wait-for-it/Dockerfile b/wait-for-it/Dockerfile index 30b9d5cf2c..92b385c14c 100644 --- a/wait-for-it/Dockerfile +++ b/wait-for-it/Dockerfile @@ -1,5 +1,5 @@ FROM alpine:3.20 ENV WAITFORIT_VERSION="v2.4.1" -RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxcnunes/waitforit/releases/download/${WAITFORIT_VERSION:?}/waitforit-linux_amd64 \ +RUN wget -q -O /usr/local/bin/waitforit https://github.com/maxclaus/waitforit/releases/download/${WAITFORIT_VERSION:?}/waitforit-linux_amd64 \ && chmod +x /usr/local/bin/waitforit ENTRYPOINT ["/usr/local/bin/waitforit"]