From 1e5fbf3a61a553a5a916817b7310e3faa8de9eb0 Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 14 Oct 2024 12:08:34 +0200 Subject: [PATCH] feat: use timescaledb-ha as baseimage for vegacapsule-timescale --- timescaledb/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/timescaledb/Dockerfile b/timescaledb/Dockerfile index 960a823..6cde660 100644 --- a/timescaledb/Dockerfile +++ b/timescaledb/Dockerfile @@ -1,5 +1,5 @@ # FROM postgres:14-bullseye -FROM timescale/timescaledb:2.15.3-pg16 +FROM timescale/timescaledb-ha:pg16.3-ts2.15.3-all ENV TIMESCALEDB_TELEMETRY "off" ENV NO_TS_TUNE true @@ -11,7 +11,7 @@ ENV POSTGRES_PASSWORD "vega" COPY ./init-db.sh /init-db.sh COPY 020_add_multiple_databases.sh /docker-entrypoint-initdb.d/ -RUN apk add sudo \ +RUN apt-get sudo \ && sudo -u postgres --preserve-env /init-db.sh RUN timescaledb-tune \ --yes \