Skip to content

Commit bd60115

Browse files
committed
cleanup
1 parent a68f748 commit bd60115

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

docker/base/Dockerfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,4 @@ RUN ${PACKAGER} -y install --nodocs --noplugins --setopt=install_weak_deps=0 \
2929
RUN ${PACKAGER} -y config-manager --set-enabled crb
3030
#Add PostgreSQL-Repo to Base
3131
RUN ${PACKAGER} --nodocs --noplugins --setopt=install_weak_deps=0 install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-9-$(uname -i)/pgdg-redhat-repo-latest.noarch.rpm && ${PACKAGER} -y update && ${PACKAGER} -y clean all
32-
RUN ${PACKAGER} -qy module disable postgresql
33-
34-
35-
36-
32+
RUN ${PACKAGER} -qy module disable postgresql

docker/exporter/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN ${PACKAGER} -y install --nodocs \
1818
RUN wget https://go.dev/dl/go1.24.4.linux-amd64.tar.gz && tar -xzf go1.24.4.linux-amd64.tar.gz && mv go /usr/local
1919
ENV PATH=$PATH:/usr/local/go/bin
2020

21-
RUN git clone https://github.com/cybertec-postgresql/postgres_exporter.git && cd postgres_exporter && make build;
21+
RUN git clone https://github.com/prometheus-community/postgres_exporter.git && cd postgres_exporter && make build;
2222

2323
FROM ${CONTAINERIMAGE}
2424
COPY --from=builder /usr/bin/dumb-init /usr/bin/dumb-init

docker/pgbackrest/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN ${PACKAGER} -y install --nodocs \
2424
dumb-init \
2525
jq \
2626
pgbackrest-${PGBACKREST_VERSION} \
27-
&& ${PACKAGER} -y clean all ;
27+
&& ${PACKAGER} -y clean all;
2828

2929
# Install postgres-server
3030
RUN ${PACKAGER} -y update \

0 commit comments

Comments
 (0)