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/Dockerfile.postgres-plpython3u
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:18beta3
FROM postgres:18

# Install the necessary packages for plpython3u
RUN apt-get update && apt-get install -y \
Expand Down
4 changes: 2 additions & 2 deletions docker/demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ RUN go generate ./api/pb/ && \
# ----------------------------------------------------------------
# 5. Demo Image with PostgreSQL + Grafana
# ----------------------------------------------------------------
FROM postgres:17-bullseye AS demo
FROM postgres:18-bookworm AS demo

# Copy over the compiled gatherer
COPY --from=go-builder /pgwatch/pgwatch /pgwatch/
Expand All @@ -72,7 +72,7 @@ RUN apt-get update \
&& curl -L "https://www.postgresql.org/media/keys/ACCC4CF8.asc" | apt-key add - \
&& curl -s https://packagecloud.io/install/repositories/timescale/timescaledb/script.deb.sh | bash \
&& apt-get -qy install \
timescaledb-2-postgresql-17 postgresql-plpython3-17 postgresql-17-pg-qualstats \
timescaledb-2-postgresql-18 postgresql-plpython3-18 postgresql-18-pg-qualstats \
supervisor python3-psutil libfontconfig1 \
&& apt-get purge -y --auto-remove \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Expand Down
2 changes: 1 addition & 1 deletion internal/testutil/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

var TestContext = log.WithLogger(context.Background(), log.NewNoopLogger())

const PostgresImage = "docker.io/postgres:17-alpine"
const PostgresImage = "docker.io/postgres:18-alpine"
const MockDatabase = "mydatabase"

const EtcdVersion = "v3.5.14"
Expand Down
Loading