From bb21facd530b0ac7441e57591bd73693dee4ebcd Mon Sep 17 00:00:00 2001 From: STAM Date: Sat, 12 Nov 2022 23:57:28 +0300 Subject: [PATCH] postgres fix --- .github/workflows/epicmorg.base.images.postgresql.yml | 4 ++-- linux/ecosystem/postgres/10/Dockerfile | 2 +- linux/ecosystem/postgres/11/Dockerfile | 2 +- linux/ecosystem/postgres/12/Dockerfile | 2 +- linux/ecosystem/postgres/13/Dockerfile | 2 +- linux/ecosystem/postgres/14/Dockerfile | 2 +- linux/ecosystem/postgres/15/Dockerfile | 2 +- linux/ecosystem/postgres/16/Dockerfile | 2 +- linux/ecosystem/postgres/8.2/Dockerfile | 2 +- linux/ecosystem/postgres/8.3/Dockerfile | 2 +- linux/ecosystem/postgres/8.4/Dockerfile | 2 +- linux/ecosystem/postgres/9.0/Dockerfile | 2 +- linux/ecosystem/postgres/9.1/Dockerfile | 2 +- linux/ecosystem/postgres/9.2/Dockerfile | 2 +- linux/ecosystem/postgres/9.3/Dockerfile | 2 +- linux/ecosystem/postgres/9.4/Dockerfile | 2 +- linux/ecosystem/postgres/9.5/Dockerfile | 2 +- linux/ecosystem/postgres/9.6/Dockerfile | 2 +- linux/ecosystem/postgres/latest/Dockerfile | 2 +- 19 files changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/epicmorg.base.images.postgresql.yml b/.github/workflows/epicmorg.base.images.postgresql.yml index a7eba38d9..626985b9d 100644 --- a/.github/workflows/epicmorg.base.images.postgresql.yml +++ b/.github/workflows/epicmorg.base.images.postgresql.yml @@ -69,8 +69,8 @@ jobs: - name: "Build and Deploy PostgreSQL 15 Image:" run: cd linux/ecosystem/postgres/15 && pwd && make build && make deploy - - name: "Build and Deploy PostgreSQL 16 Image:" - run: cd linux/ecosystem/postgres/16 && pwd && make build && make deploy +# - name: "Build and Deploy PostgreSQL 16 Image:" +# run: cd linux/ecosystem/postgres/16 && pwd && make build && make deploy ################################################################################## diff --git a/linux/ecosystem/postgres/10/Dockerfile b/linux/ecosystem/postgres/10/Dockerfile index 766aba8d6..37c39bd52 100644 --- a/linux/ecosystem/postgres/10/Dockerfile +++ b/linux/ecosystem/postgres/10/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/11/Dockerfile b/linux/ecosystem/postgres/11/Dockerfile index dc650590e..b62d65b30 100644 --- a/linux/ecosystem/postgres/11/Dockerfile +++ b/linux/ecosystem/postgres/11/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/12/Dockerfile b/linux/ecosystem/postgres/12/Dockerfile index e8fb6c9ad..8bde42dcc 100644 --- a/linux/ecosystem/postgres/12/Dockerfile +++ b/linux/ecosystem/postgres/12/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/13/Dockerfile b/linux/ecosystem/postgres/13/Dockerfile index fc82b7532..1f34ceeac 100644 --- a/linux/ecosystem/postgres/13/Dockerfile +++ b/linux/ecosystem/postgres/13/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/14/Dockerfile b/linux/ecosystem/postgres/14/Dockerfile index 374cee24f..90dd245bb 100644 --- a/linux/ecosystem/postgres/14/Dockerfile +++ b/linux/ecosystem/postgres/14/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/15/Dockerfile b/linux/ecosystem/postgres/15/Dockerfile index b57b2a2bd..41fea4cc3 100644 --- a/linux/ecosystem/postgres/15/Dockerfile +++ b/linux/ecosystem/postgres/15/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/16/Dockerfile b/linux/ecosystem/postgres/16/Dockerfile index 506712364..c415042a4 100644 --- a/linux/ecosystem/postgres/16/Dockerfile +++ b/linux/ecosystem/postgres/16/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/8.2/Dockerfile b/linux/ecosystem/postgres/8.2/Dockerfile index 12d729678..12dab76b8 100644 --- a/linux/ecosystem/postgres/8.2/Dockerfile +++ b/linux/ecosystem/postgres/8.2/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/8.3/Dockerfile b/linux/ecosystem/postgres/8.3/Dockerfile index f33c59f41..e477093ff 100644 --- a/linux/ecosystem/postgres/8.3/Dockerfile +++ b/linux/ecosystem/postgres/8.3/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/8.4/Dockerfile b/linux/ecosystem/postgres/8.4/Dockerfile index 8c360a073..8017695dd 100644 --- a/linux/ecosystem/postgres/8.4/Dockerfile +++ b/linux/ecosystem/postgres/8.4/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/9.0/Dockerfile b/linux/ecosystem/postgres/9.0/Dockerfile index 563e7d560..4ebb292f7 100644 --- a/linux/ecosystem/postgres/9.0/Dockerfile +++ b/linux/ecosystem/postgres/9.0/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/9.1/Dockerfile b/linux/ecosystem/postgres/9.1/Dockerfile index 500f18ddd..692927889 100644 --- a/linux/ecosystem/postgres/9.1/Dockerfile +++ b/linux/ecosystem/postgres/9.1/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/9.2/Dockerfile b/linux/ecosystem/postgres/9.2/Dockerfile index 2e8fde15d..8630f804c 100644 --- a/linux/ecosystem/postgres/9.2/Dockerfile +++ b/linux/ecosystem/postgres/9.2/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/9.3/Dockerfile b/linux/ecosystem/postgres/9.3/Dockerfile index f6ca82e52..8ea8bbff1 100644 --- a/linux/ecosystem/postgres/9.3/Dockerfile +++ b/linux/ecosystem/postgres/9.3/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/9.4/Dockerfile b/linux/ecosystem/postgres/9.4/Dockerfile index 61faed099..12f93f005 100644 --- a/linux/ecosystem/postgres/9.4/Dockerfile +++ b/linux/ecosystem/postgres/9.4/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/9.5/Dockerfile b/linux/ecosystem/postgres/9.5/Dockerfile index e57c1d688..0cf636a33 100644 --- a/linux/ecosystem/postgres/9.5/Dockerfile +++ b/linux/ecosystem/postgres/9.5/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/9.6/Dockerfile b/linux/ecosystem/postgres/9.6/Dockerfile index 7ba133b0a..c5c88bf71 100644 --- a/linux/ecosystem/postgres/9.6/Dockerfile +++ b/linux/ecosystem/postgres/9.6/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl diff --git a/linux/ecosystem/postgres/latest/Dockerfile b/linux/ecosystem/postgres/latest/Dockerfile index 374cee24f..90dd245bb 100644 --- a/linux/ecosystem/postgres/latest/Dockerfile +++ b/linux/ecosystem/postgres/latest/Dockerfile @@ -14,7 +14,7 @@ RUN groupadd -r postgres && useradd -r -g postgres postgres ENV GOSU_VER 1.14 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* \ - && curl -o /usr/local/bin/gosu -SL https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 \ + && wget --no-check-certificate -c https://github.com/tianon/gosu/releases/download/$GOSU_VER/gosu-amd64 --random-wait -P /usr/local/bin/gosu \ && chmod +x /usr/local/bin/gosu \ && apt-get purge -y --auto-remove curl