From cac63dcb409dfc91b2f07d9df91ae152607bd9df Mon Sep 17 00:00:00 2001 From: Maxime Killinger Date: Mon, 3 Aug 2026 16:45:39 +0200 Subject: [PATCH] chore(deps): update TimescaleDB to 2.29.0 and VectorChord to v1.1.1 --- Dockerfile | 8 ++++---- README.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index dee429f..ca16f47 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG PG_VERSION=18 # ============================================================================= # Builder stage - Compile TimescaleDB # ============================================================================= -FROM tensorchord/vchord-postgres:pg${PG_VERSION}-v1.0.0 AS builder +FROM tensorchord/vchord-postgres:pg${PG_VERSION}-v1.1.1 AS builder USER root @@ -19,7 +19,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* # Build TimescaleDB from source (stable release) -ARG TIMESCALEDB_VERSION=2.24.0 +ARG TIMESCALEDB_VERSION=2.29.0 WORKDIR /build/timescaledb RUN git clone --branch ${TIMESCALEDB_VERSION} --depth 1 https://github.com/timescale/timescaledb.git . \ && ./bootstrap -DREGRESS_CHECKS=OFF -DWARNINGS_AS_ERRORS=OFF \ @@ -28,7 +28,7 @@ RUN git clone --branch ${TIMESCALEDB_VERSION} --depth 1 https://github.com/times # ============================================================================= # Final stage - Clean runtime image # ============================================================================= -FROM tensorchord/vchord-postgres:pg${PG_VERSION}-v1.0.0 AS final +FROM tensorchord/vchord-postgres:pg${PG_VERSION}-v1.1.1 AS final # OCI Labels LABEL org.opencontainers.image.title="TimescaleDB + VectorChord + pgvector" @@ -36,7 +36,7 @@ LABEL org.opencontainers.image.description="PostgreSQL with TimescaleDB, VectorC LABEL org.opencontainers.image.source="https://gitea.killinger.fr/maxime.killinger/postgres-ts-vectors" LABEL org.opencontainers.image.vendor="Maxime Killinger" LABEL org.opencontainers.image.licenses="Apache-2.0" -LABEL org.opencontainers.image.base.name="tensorchord/vchord-postgres:pg${PG_VERSION}-v1.0.0" +LABEL org.opencontainers.image.base.name="tensorchord/vchord-postgres:pg${PG_VERSION}-v1.1.1" # Copy TimescaleDB from builder COPY --from=builder /tmp/timescaledb/usr/lib/postgresql/ /usr/lib/postgresql/ diff --git a/README.md b/README.md index 0326fcc..863ca54 100644 --- a/README.md +++ b/README.md @@ -12,10 +12,10 @@ Docker image combining **PostgreSQL** with three powerful extensions: | Tag | PostgreSQL | TimescaleDB | VectorChord | pgvector | |-----|------------|-------------|-------------|----------| -| `pg15` | 15 | 2.24.0 | 1.0.0 | 0.8.1 | -| `pg16` | 16 | 2.24.0 | 1.0.0 | 0.8.1 | -| `pg17` | 17 | 2.24.0 | 1.0.0 | 0.8.1 | -| `pg18`, `latest` | 18 | 2.24.0 | 1.0.0 | 0.8.1 | +| `pg15` | 15 | 2.29.0 | 1.1.1 | 0.8.1 | +| `pg16` | 16 | 2.29.0 | 1.1.1 | 0.8.1 | +| `pg17` | 17 | 2.29.0 | 1.1.1 | 0.8.1 | +| `pg18`, `latest` | 18 | 2.29.0 | 1.1.1 | 0.8.1 | ## Quick Start