Skip to content

Commit 8ce1926

Browse files
committed
added missing but to container and removed unneeded code
1 parent 160b397 commit 8ce1926

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

docker/pgbackrest/Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ ARG PACKAGER
1010
ARG PGBACKREST_VERSION
1111
ARG PGVERSION
1212
ARG OLD_PG_VERSIONS
13-
#ARG PG_SUPPORTED_VERSIONS="$PGVERSION"
1413
ARG PG_SUPPORTED_VERSIONS="$OLD_PG_VERSIONS $PGVERSION"
1514

1615
RUN ${PACKAGER} -y install --nodocs \
@@ -21,7 +20,6 @@ RUN ${PACKAGER} -y install --nodocs \
2120
lz4 \
2221
zstd \
2322
libicu \
24-
#postgresql${PGVERSION}-server \
2523
dumb-init \
2624
jq \
2725
pgbackrest-${PGBACKREST_VERSION} \

docker/postgres/Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
ARG CONTAINERSUITE
22
ARG BUILD
33
ARG BASEOS
4+
ARG PGVERSION
45

56
FROM ${CONTAINERSUITE}/base:${BASEOS}-${BUILD} as builder
67

@@ -198,6 +199,9 @@ RUN pip3 install 'PyYAML<6.0' setuptools pystache loader kazoo meld3 boto python
198199
# && ${PACKAGER} -y clean all;
199200

200201
FROM scratch
202+
203+
ARG PGVERSION
204+
201205
COPY --from=builder / /
202206

203207
EXPOSE 5432 8008 8080

0 commit comments

Comments
 (0)