From 63ee4e70c5cafbf3a33d109359f5b8cc908654c0 Mon Sep 17 00:00:00 2001 From: Rich Turner <7072278+richturner@users.noreply.github.com> Date: Sun, 18 Jan 2026 22:34:37 +0000 Subject: [PATCH] Merge when this is fixed https://github.com/timescale/timescaledb-docker-ha/issues/601 --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1d185bc..6b1ae65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,8 @@ ARG PG_MAJOR=17 ARG PREV_PG_MAJOR=15 -ARG TIMESCALE_VERSION=2.22 # Stage 1: Get PostgreSQL ${PREV_PG_MAJOR} binaries for upgrade support -FROM timescale/timescaledb-ha:pg${PG_MAJOR}-ts${TIMESCALE_VERSION}-all AS pg-all +FROM timescale/timescaledb-ha:pg${PG_MAJOR}-all AS pg-all USER root @@ -18,7 +17,7 @@ RUN find /usr/lib/postgresql/${PREV_PG_MAJOR} -type f -name '*.so*' -exec strip /usr/share/postgresql/${PREV_PG_MAJOR}/contrib # Stage 2: Prepare the main image with UID/GID changes and cleanup -FROM timescale/timescaledb-ha:pg${PG_MAJOR}-ts${TIMESCALE_VERSION} AS final +FROM timescale/timescaledb-ha:pg${PG_MAJOR} AS final LABEL maintainer="support@openremote.io" USER root