# Install TimescaleDB
RUN apt update \
&& apt install -y gnupg postgresql-common apt-transport-https lsb-release wget \
&& /usr/share/postgresql-common/pgdg/apt.postgresql.org.sh -y \
&& echo "deb https://packagecloud.io/timescale/timescaledb/debian/ $(lsb_release -c -s) main" | tee /etc/apt/sources.list.d/timescaledb.list \
&& wget --quiet -O - https://packagecloud.io/timescale/timescaledb/gpgkey | apt-key add - \
&& apt update \
&& apt install timescaledb-2-postgresql-15 -y
Install timescaledb on debian docker image
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment