# 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
Created
March 9, 2023 01:10
-
-
Save pyk/fd41dc05940ec943fa507e2a5e94582b to your computer and use it in GitHub Desktop.
Install timescaledb on debian docker image
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment