docker.io/timescale/timescaledb:2.25.0-pg17 linux/amd64

docker.io/timescale/timescaledb:2.25.0-pg17 - 国内下载镜像源 浏览次数:9

TimescaleDB 镜像

描述

这是一个包含 TimescaleDB 数据库的 Docker 镜像。TimescaleDB 是一个开源的关系型数据库,它在 PostgreSQL 之上构建,用于时间序列数据。

该镜像提供了一个预先配置的 TimescaleDB 环境,方便用户快速部署和使用。

源镜像 docker.io/timescale/timescaledb:2.25.0-pg17
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17
镜像ID sha256:a6dbda4a6b91b922f3146397ba40d8c6fae3c5fee06d0c3d3a873b5365d67ea7
镜像TAG 2.25.0-pg17
大小 902.29MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 9 次
贡献者
镜像创建 2026-01-29T09:12:52.385952623Z
同步时间 2026-02-08 19:22
开放端口
5432/tcp
目录挂载
/var/lib/postgresql/data
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin GOSU_VERSION=1.19 LANG=en_US.utf8 PG_MAJOR=17 PG_VERSION=17.7 PG_SHA256=ef9e343302eccd33112f1b2f0247be493cb5768313adeb558b02de8797a2e9b5 DOCKER_PG_LLVM_DEPS=llvm19-dev clang19 PGDATA=/var/lib/postgresql/data
镜像标签
Timescale https://www.timescale.com: maintainer

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17  docker.io/timescale/timescaledb:2.25.0-pg17

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17  docker.io/timescale/timescaledb:2.25.0-pg17

Shell快速替换命令

sed -i 's#timescale/timescaledb:2.25.0-pg17#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17  docker.io/timescale/timescaledb:2.25.0-pg17'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17  docker.io/timescale/timescaledb:2.25.0-pg17'

镜像构建历史


# 2026-01-29 17:12:52  26.09MB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.21 PGVECTOR_VERSION=v0.8.1 CLANG_VERSION=19 TS_VERSION=2.25.0 /bin/sh -c set -ex     && apk add --no-cache --virtual .fetch-deps                 ca-certificates                 git                 openssl                 openssl-dev                 tar     && mkdir -p /build/     && git clone https://github.com/timescale/timescaledb /build/timescaledb         && apk add --no-cache --virtual .build-deps                 coreutils                 dpkg-dev dpkg                 gcc                 krb5-dev                 libc-dev                 make                 cmake                 util-linux-dev         && cd /build/timescaledb && rm -fr build     && git checkout ${TS_VERSION}     && ./bootstrap -DCMAKE_BUILD_TYPE=RelWithDebInfo -DREGRESS_CHECKS=OFF -DTAP_CHECKS=OFF -DGENERATE_DOWNGRADE_SCRIPT=ON -DWARNINGS_AS_ERRORS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY}     && cd build && make install     && cd ~         && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi     && apk del .fetch-deps .build-deps     && rm -rf /build     && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
                        
# 2026-01-29 17:07:30  0.00B 定义构建参数
ARG TS_VERSION=2.25.0
                        
# 2026-01-29 17:07:30  295.49MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2026-01-29 17:07:28  271.69MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2026-01-29 17:07:28  16.11MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2026-01-29 17:07:00  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2026-01-29 17:07:00  12.77MB 执行命令并创建新的镜像层
RUN |6 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.21 PGVECTOR_VERSION=v0.8.1 CLANG_VERSION=19 /bin/sh -c set -ex;     apk update;     apk add --no-cache --virtual .vector-deps         postgresql${PG_VERSION}-dev         git         build-base         clang${CLANG_VERSION}         llvm${CLANG_VERSION}-dev         llvm${CLANG_VERSION};     git clone --branch ${PGVECTOR_VERSION} https://github.com/pgvector/pgvector.git /build/pgvector;     cd /build/pgvector;     make OPTFLAGS="";     make install;     apk del .vector-deps # buildkit
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG CLANG_VERSION=19
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.8.1
                        
# 2026-01-29 17:05:26  2.48MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.21 /bin/sh -c set -ex;     echo "https://dl-cdn.alpinelinux.org/alpine/v${ALPINE_VERSION}/community/" >> /etc/apk/repositories;     apk update;     if [ "$PG_MAJOR_VERSION" -ge 16 && "$PG_MAJOR_VERSION" -lt 18 ] ; then         apk add --no-cache postgresql${PG_VERSION}-plpython3;     fi # buildkit
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG ALPINE_VERSION=3.21
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2026-01-29 17:05:26  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2026-01-29 17:05:26  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2025-11-15 03:21:53  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2025-11-15 03:21:53  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2025-11-15 03:21:53  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2025-11-15 03:21:53  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-11-15 03:21:53  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2025-11-15 03:21:53  16.36KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2025-11-15 03:21:53  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2025-11-15 03:21:53  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2025-11-15 03:21:53  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2025-11-15 03:21:53  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2025-11-15 03:21:53  61.28KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; 	sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; 	grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample # buildkit
                        
# 2025-11-15 03:21:53  267.73MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; 	echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; 	mkdir -p /usr/src/postgresql; 	tar 		--extract 		--file postgresql.tar.bz2 		--directory /usr/src/postgresql 		--strip-components 1 	; 	rm postgresql.tar.bz2; 		apk add --no-cache --virtual .build-deps 		$DOCKER_PG_LLVM_DEPS 		bison 		coreutils 		dpkg-dev dpkg 		flex 		g++ 		gcc 		krb5-dev 		libc-dev 		libedit-dev 		libxml2-dev 		libxslt-dev 		linux-headers 		make 		openldap-dev 		openssl-dev 		perl-dev 		perl-ipc-run 		perl-utils 		python3-dev 		tcl-dev 		util-linux-dev 		zlib-dev 		icu-dev 		lz4-dev 		zstd-dev 	; 		cd /usr/src/postgresql; 	awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; 	grep '/var/run/postgresql' src/include/pg_config_manual.h.new; 	mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; 	gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; 		export LLVM_CONFIG="/usr/lib/llvm19/bin/llvm-config"; 	export CLANG=clang-19; 		./configure 		--enable-option-checking=fatal 		--build="$gnuArch" 		--enable-integer-datetimes 		--enable-tap-tests 		--disable-rpath 		--with-uuid=e2fs 		--with-pgport=5432 		--with-system-tzdata=/usr/share/zoneinfo 		--prefix=/usr/local 		--with-includes=/usr/local/include 		--with-libraries=/usr/local/lib 		--with-gssapi 		--with-icu 		--with-ldap 		--with-libxml 		--with-libxslt 		--with-llvm 		--with-lz4 		--with-openssl 		--with-perl 		--with-python 		--with-tcl 		--with-zstd 	; 	make -j "$(nproc)" world-bin; 	make install-world-bin; 	make -C contrib install; 		runDeps="$( 		scanelf --needed --nobanner --format '%n#p' --recursive /usr/local 			| tr ',' '\n' 			| sort -u 			| awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' 			| grep -v -e perl -e python -e tcl 	)"; 	apk add --no-cache --virtual .postgresql-rundeps 		$runDeps 		bash 		tzdata 		zstd 		icu-data-full 		$([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') 	; 	apk del --no-network .build-deps; 	cd /; 	rm -rf 		/usr/src/postgresql 		/usr/local/share/doc 		/usr/local/share/man 	; 		postgres --version # buildkit
                        
# 2025-11-15 03:19:22  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm19-dev 		clang19
                        
# 2025-11-15 03:19:22  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=ef9e343302eccd33112f1b2f0247be493cb5768313adeb558b02de8797a2e9b5
                        
# 2025-11-15 03:19:22  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=17.7
                        
# 2025-11-15 03:19:22  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=17
                        
# 2025-11-15 03:19:22  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2025-11-15 03:19:22  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2025-11-15 03:19:22  2.01MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apk add --no-cache --virtual .gosu-deps 		ca-certificates 		dpkg 		gnupg 	; 		dpkgArch="$(dpkg --print-architecture | awk -F- '{ print $NF }')"; 	wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch"; 	wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$dpkgArch.asc"; 		export GNUPGHOME="$(mktemp -d)"; 	gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4; 	gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu; 	gpgconf --kill all; 	rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc; 		apk del --no-network .gosu-deps; 		chmod +x /usr/local/bin/gosu; 	gosu --version; 	gosu nobody true # buildkit
                        
# 2025-11-15 03:19:22  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.19
                        
# 2025-11-15 03:19:20  3.06KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	addgroup -g 70 -S postgres; 	adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; 	install --verbose --directory --owner postgres --group postgres --mode 1777 /var/lib/postgresql # buildkit
                        
# 2025-10-08 19:06:42  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-10-08 19:06:42  7.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.5-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:a6dbda4a6b91b922f3146397ba40d8c6fae3c5fee06d0c3d3a873b5365d67ea7",
    "RepoTags": [
        "timescale/timescaledb:2.25.0-pg17",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.0-pg17"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:1472440beade43e9042bc4ce3ba89dc026f7023b2133fda10946fde9f4a204cf",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:0c33672f154b889c9b7a81d79dc4d2a2bbbce5f21df84a6afb6795aeefbec391"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-01-29T09:12:52.385952623Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "5432/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "GOSU_VERSION=1.19",
            "LANG=en_US.utf8",
            "PG_MAJOR=17",
            "PG_VERSION=17.7",
            "PG_SHA256=ef9e343302eccd33112f1b2f0247be493cb5768313adeb558b02de8797a2e9b5",
            "DOCKER_PG_LLVM_DEPS=llvm19-dev \t\tclang19",
            "PGDATA=/var/lib/postgresql/data"
        ],
        "Cmd": [
            "postgres"
        ],
        "Image": "",
        "Volumes": {
            "/var/lib/postgresql/data": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "Timescale https://www.timescale.com"
        },
        "StopSignal": "SIGINT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 902290741,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/ee21b1500a51162cb652a4abefb741651d2561e3681683bfa0b260d71a1cf863/diff:/var/lib/docker/overlay2/0e7e3080d72c3ef954a7d571ef8a7cbc256b77c5f572d418861eda025ffe65b6/diff:/var/lib/docker/overlay2/cad258de8c20858e96a2372daffd5fdfeb03b7b8d1060bd3904b8e900f9eb9be/diff:/var/lib/docker/overlay2/c258f9b690004ea708aa01f93e26828b2eb8f3da52d8140097d0d9c191c33b73/diff:/var/lib/docker/overlay2/778a0a836e024b52bfbe290bd08a1c8f18f53dbe152d27a3635acf1f4775fc3f/diff:/var/lib/docker/overlay2/ca440def2066ef0369d177c6fa7a631ff0e73d30cc056dee7cf56f26d1edb8a4/diff:/var/lib/docker/overlay2/d92f7c05e7d0462ebb760f46ae5b3f1f7ac5bff0fa93c2389f6806efffa81e55/diff:/var/lib/docker/overlay2/091cb84362b549902c55faf67d2489a005b3b2f762b2122c25bd8cfec254646f/diff:/var/lib/docker/overlay2/0d7ce10819e0521104d3f34b9fe4536574074de496cb7cca04a7373340910174/diff:/var/lib/docker/overlay2/4b1232e4adcdf8436ebe4f2250d033b4c48b4e9abc56161e1bea828f29f7c2ba/diff:/var/lib/docker/overlay2/c6f023bd9166ff80ade903ea06858600a6bc99c241443a4c89b7bd05810f53a6/diff:/var/lib/docker/overlay2/f987056e6d5421140d394deda82a1c735e0a0b55eb19c9a936679445908b3da0/diff:/var/lib/docker/overlay2/b1b817c2ab2c4b950d4baa15d41eed0981ae3a0c51409b7a94a60f8bdc7f81f6/diff:/var/lib/docker/overlay2/71ad0b266fbfe2f376fb8c08c1b6ba959428f582cf736b897f1f96d1e01a57ec/diff:/var/lib/docker/overlay2/67291e6b1fe84e635e5c4fbe057a8948505141b79ca86b719bb569deb6a7e7d0/diff:/var/lib/docker/overlay2/14e8c666d918e7603b93e09a5088443da9ef63e7ca5bccee76b97634e4e3ee5b/diff",
            "MergedDir": "/var/lib/docker/overlay2/fb1590d5f25d527b717ad24567dd44a6962068cdbca31e1f041f4ea3107b1092/merged",
            "UpperDir": "/var/lib/docker/overlay2/fb1590d5f25d527b717ad24567dd44a6962068cdbca31e1f041f4ea3107b1092/diff",
            "WorkDir": "/var/lib/docker/overlay2/fb1590d5f25d527b717ad24567dd44a6962068cdbca31e1f041f4ea3107b1092/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:922ec217407c0fd31cb18b46090bf62e439fb53ecd01f09406d62e25a906e09b",
            "sha256:a2e40c250d1900557c1ea0d7db075e41867bf27882cb32c01007bf3f517bb6eb",
            "sha256:caabe442a83bfe25da65f2daa6c3ced442c94b5313566a15aa07832d1d964f1b",
            "sha256:6b8b4c7772ef2ad562ba57a6cbf7ba0a3d2f43c78c2461139bfee747ac601faf",
            "sha256:9981bfb9b88ef9f21fb5592bea536e5b3f74312e570a7b81cd7b9b5b97147c12",
            "sha256:995330bf6b9eb47f7232c97bc756664e51cbbaf3826720e5dc7822b28795fdf3",
            "sha256:f227cc5b17e5116a1ee03abd3874e4ef91066e8e7aa21cff3419d9c8e87fce05",
            "sha256:a35177ee402651088853584836649220487a8095a7f0dd3c0a2fbbe53408de43",
            "sha256:4c91934532ec975bd9728ea0ec3ac82e484eafdcdb5f986c1cfc7f057feb851c",
            "sha256:53fa432230ceb5313802bea040b30d1c1f988a6369cc41d968a31443c548edc2",
            "sha256:37805b97a96df38fc8a7c50b502f3810194506194bccee117297720ec30583c3",
            "sha256:15a69772585f31e0a148a0a310eb3e52f6fbff8d57f8975e9936008981991391",
            "sha256:5b0c13ef058ef6262451eeafeb0490ae66c7e90c250abed5d07419ac8e9b6071",
            "sha256:36ec2c2ecc135b344dd98aa2835d0cf55dfb32ec457c2ae4d7a4e88d69aa4a96",
            "sha256:e9fa4d34e1e1e73cf2a2c21c0fb88a29c856ccccf675a20bd4d4312afdf436ee",
            "sha256:a63827c75961a7688b233ecfc325756ae1635f2d21cc4626565a839882c0d07b",
            "sha256:e545ed05ff3af0218cb4c6180e9b056dbd20d2c15d205d7640e3d30992612409"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-02-08T19:22:07.48040689+08:00"
    }
}

更多版本

docker.io/timescale/timescaledb-ha:pg16-ts2.17-all

linux/amd64 docker.io6.03GB2024-10-16 11:08
813

docker.io/timescale/timescaledb:2.17.0-pg16

linux/amd64 docker.io718.49MB2024-10-31 15:04
437

docker.io/timescale/timescaledb:2.3.1-pg11

linux/amd64 docker.io228.21MB2024-11-25 11:42
439

docker.io/timescale/timescaledb:latest-pg12

linux/amd64 docker.io586.77MB2025-01-22 14:37
637

docker.io/timescale/timescaledb:latest-pg11

linux/amd64 docker.io228.21MB2025-01-22 14:49
248

docker.io/timescale/timescaledb:1.3.0-pg11

linux/amd64 docker.io86.73MB2025-01-22 15:20
279

docker.io/timescale/timescaledb-postgis:1.3.0-pg11

linux/amd64 docker.io162.86MB2025-01-22 16:17
363

docker.io/timescale/timescaledb:latest-pg14

linux/amd64 docker.io1.02GB2025-02-06 19:30
604

docker.io/timescale/timescaledb:latest-pg16

linux/amd64 docker.io1.83GB2025-02-06 19:41
1032

docker.io/timescale/timescaledb-ha:pg14-latest

linux/amd64 docker.io2.99GB2025-02-06 22:06
935

docker.io/timescale/timescaledb-ha:pg15-latest

linux/amd64 docker.io3.37GB2025-02-07 18:07
1020

docker.io/timescale/timescaledb-ha:pg16.8-ts2.19.0-all

linux/amd64 docker.io6.65GB2025-03-24 15:43
583

docker.io/timescale/timescaledb-ha:pg16

linux/amd64 docker.io2.29GB2025-03-24 15:47
494

docker.io/timescale/timescaledb-ha:pg17

linux/amd64 docker.io2.03GB2025-03-25 13:45
1159

docker.io/timescale/timescaledb-ha:pg16-ts2.19-all-oss

linux/amd64 docker.io4.41GB2025-04-17 10:54
678

docker.io/timescale/timescaledb-ha:pg15.13-ts2.20.0-all

linux/amd64 docker.io3.81GB2025-05-20 10:44
465

docker.io/timescale/timescaledb-postgis:latest-pg13

linux/amd64 docker.io308.37MB2025-06-27 16:37
289

docker.io/timescale/timescaledb:2.19.2-pg14-oss

linux/arm64 docker.io1.02GB2025-07-16 11:58
238

docker.io/timescale/timescaledb:2.19.3-pg14

linux/arm64 docker.io1.24GB2025-07-16 12:05
262

docker.io/timescale/timescaledb-ha:pg17.5-ts2.21.3

linux/amd64 docker.io3.24GB2025-08-20 12:45
371

docker.io/timescale/timescaledb-postgis:2.1.0-pg11

linux/amd64 docker.io313.30MB2025-09-11 12:01
218

docker.io/timescale/timescaledb-ha:pg15.13-ts2.20.0-all

linux/arm64 docker.io3.72GB2025-09-29 11:58
317

docker.io/timescale/timescaledb:2.19.3-pg14

linux/amd64 docker.io1.24GB2025-10-17 09:29
150

docker.io/timescale/timescaledb:2.22.1-pg17

linux/amd64 docker.io846.12MB2025-10-21 11:09
303

docker.io/timescale/timescaledb-ha:pg14.19-ts2.19.3-all

linux/amd64 docker.io2.85GB2025-10-24 09:49
252

docker.io/timescale/timescaledb-ha:pg17-ts2.23

linux/amd64 docker.io4.73GB2025-11-07 16:17
286

docker.io/timescale/timescaledb:latest-pg15

linux/amd64 docker.io1.30GB2025-11-11 19:38
181

docker.io/timescale/timescaledb-ha:pg17-ts2.24-all

linux/amd64 docker.io7.00GB2025-12-11 02:30
302

docker.io/timescale/timescaledb:2.20.0-pg17

linux/amd64 docker.io622.20MB2026-01-15 14:33
88

docker.io/timescale/timescaledb:2.25.0-pg17

linux/amd64 docker.io902.29MB2026-02-08 19:22
8