Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/exporter/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN ${PACKAGER} -y install --nodocs \
make \
&& ${PACKAGER} -y clean all ;

RUN wget https://go.dev/dl/go1.25.7.linux-amd64.tar.gz && tar -xzf go1.25.7.linux-amd64.tar.gz && mv go /usr/local
RUN wget https://go.dev/dl/go1.26.1.linux-amd64.tar.gz && tar -xzf go1.26.1.linux-amd64.tar.gz && mv go /usr/local
ENV PATH=$PATH:/usr/local/go/bin

RUN git clone https://github.com/prometheus-community/postgres_exporter.git && cd postgres_exporter && make build;
Expand Down
2 changes: 1 addition & 1 deletion docker/postgres-gis/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ENV PATHBACKUP = $PATH
RUN wget https://smarden.org/runit/runit-2.3.0.tar.gz -P /package/
COPY cron_unprivileged.c /package/

RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 --upgrade \
RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 python-json-logger --upgrade \
&& if [[ $PATRONI_VERSION == "multisite-"* ]]; then \
git clone -b $PATRONI_VERSION https://github.com/cybertec-postgresql/patroni; \
pip3 install ./patroni[kubernetes,etcd,etcd3]; \
Expand Down
2 changes: 1 addition & 1 deletion docker/postgres/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ENV PATHBACKUP = $PATH
RUN wget https://smarden.org/runit/runit-2.3.0.tar.gz -P /package/
COPY cron_unprivileged.c /package/

RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 --upgrade \
RUN pip3 install PyYAML setuptools pystache loader kazoo meld3 boto3 python-etcd psutil requests cdiff ydiff==1.4.2 python-json-logger --upgrade \
&& if [[ $PATRONI_VERSION == "multisite-"* ]]; then \
git clone -b $PATRONI_VERSION https://github.com/cybertec-postgresql/patroni; \
pip3 install ./patroni[kubernetes,etcd,etcd3]; \
Expand Down