logo
docker.io/timescale/timescaledb:2.29.0-pg17
linux/amd64 docker.io LAB 贡献

TimescaleDB 镜像

描述

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

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

16
浏览次数
1.44GB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.0-pg17
源镜像
docker.io/timescale/timescaledb:2.29.0-pg17
镜像ID
sha256:a7a2741eaa65ef219f28f10cfac60fbe31a33b1fedd6bcad35eb978c7d4e88eb
镜像 TAG
2.29.0-pg17
镜像大小
1.44GB
平台架构
linux/amd64
镜像源
docker.io
CMD
postgres
启动入口
docker-entrypoint.sh
工作目录
/
OS/平台
linux/amd64
镜像创建
2026-07-28T12:12:19.290978007Z
同步时间
2026-07-29 16:24
浏览量
16 次
贡献者
avatar LAB
🔌 开放端口 1
5432/tcp
📁 目录挂载 1
 /var/lib/postgresql/data
⚙️ 环境变量 8
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
GOSU_VERSION=1.19 1
LANG=en_US.utf8 2
PG_MAJOR=17 3
PG_VERSION=17.10 4
PG_SHA256=078a03516dcdbdb705fecaf415ea3d13a956c589e46f09fed68a06fb00598c90 5
DOCKER_PG_LLVM_DEPS=llvm21-dev clang21 6
PGDATA=/var/lib/postgresql/data 7
🏷️ 镜像标签 1
KeyValue
Timescale https://www.timescale.com maintainer
🛡️ 镜像安全扫描
alpine 3.23.5 Trivy 2026-07-29 16:24 查看完整报告
3
低危 LOW
37
中危 MEDIUM
41
高危 HIGH
3
严重 CRITICAL
受影响目标 (4)
docker.io/timescale/timescaledb:2.29.0-pg17 (alpine 3.23.5) alpine usr/local/bin/gosu gobinary usr/local/bin/timescaledb-parallel-copy gobinary usr/local/bin/timescaledb-tune gobinary

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#timescale/timescaledb:2.29.0-pg17#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.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.29.0-pg17 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.0-pg17  docker.io/timescale/timescaledb:2.29.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.29.0-pg17 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.0-pg17  docker.io/timescale/timescaledb:2.29.0-pg17'

镜像构建历史


# 2026-07-28 20:12:19  41.54MB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.23 PGVECTOR_VERSION=v0.8.1 CLANG_VERSION=21 TS_VERSION=2.29.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                 icu-dev                 gcc                 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-07-28 19:55:00  0.00B 定义构建参数
ARG TS_VERSION=2.29.0
                        
# 2026-07-28 19:55:00  529.72MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2026-07-28 19:54:58  491.59MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2026-07-28 19:54:57  17.90MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2026-07-28 19:54:05  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2026-07-28 19:54:05  7.93MB 执行命令并创建新的镜像层
RUN |6 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.23 PGVECTOR_VERSION=v0.8.1 CLANG_VERSION=21 /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-07-28 19:52:20  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2026-07-28 19:52:20  0.00B 定义构建参数
ARG CLANG_VERSION=21
                        
# 2026-07-28 19:52:20  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2026-07-28 19:52:20  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.8.1
                        
# 2026-07-28 19:52:20  59.51MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.23 /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-07-28 19:52:20  0.00B 定义构建参数
ARG ALPINE_VERSION=3.23
                        
# 2026-07-28 19:52:20  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2026-07-28 19:52:20  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2026-07-28 19:52:20  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2026-07-28 19:52:20  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2026-07-08 01:47:12  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2026-07-08 01:47:12  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2026-07-08 01:47:12  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2026-07-08 01:47:12  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2026-07-08 01:47:12  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2026-07-08 01:47:12  16.89KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2026-07-08 01:47:12  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2026-07-08 01:47:12  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2026-07-08 01:47:12  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2026-07-08 01:47:12  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2026-07-08 01:47:11  61.65KB 执行命令并创建新的镜像层
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
                        
# 2026-07-08 01:47:11  285.23MB 执行命令并创建新的镜像层
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/llvm21/bin/llvm-config"; 	export CLANG=clang-21; 		./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
                        
# 2026-07-08 01:44:51  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm21-dev 		clang21
                        
# 2026-07-08 01:44:51  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=078a03516dcdbdb705fecaf415ea3d13a956c589e46f09fed68a06fb00598c90
                        
# 2026-07-08 01:44:51  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=17.10
                        
# 2026-07-08 01:44:51  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=17
                        
# 2026-07-08 01:44:51  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2026-07-08 01:44:51  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2026-07-08 01:44:51  1.97MB 执行命令并创建新的镜像层
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
                        
# 2026-07-08 01:44:51  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.19
                        
# 2026-07-08 01:44:49  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
                        
# 2026-06-23 03:20:09  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-23 03:20:09  8.41MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.5-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:a7a2741eaa65ef219f28f10cfac60fbe31a33b1fedd6bcad35eb978c7d4e88eb",
    "RepoTags": [
        "timescale/timescaledb:2.29.0-pg17",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.0-pg17"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:3e65c273cbf7218f2a28692492b4625b49f35c7d2142e945561ef52311a8c83a",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:640fa10df6bc33289b1ece16b123945ca71555fa64d4c4f4268381b9c9f3feed"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-07-28T12:12:19.290978007Z",
    "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.10",
            "PG_SHA256=078a03516dcdbdb705fecaf415ea3d13a956c589e46f09fed68a06fb00598c90",
            "DOCKER_PG_LLVM_DEPS=llvm21-dev \t\tclang21",
            "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": 1443895927,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/f0f5e4b9dc7a0dd80046c79a16c2d47958069187648feacea129f6b91ca0538e/diff:/var/lib/docker/overlay2/6f0f95f45f0068679d9c39bc2a07ea616d4f28a2a294547a34712e091bdede30/diff:/var/lib/docker/overlay2/946657e7f209a1d2e8ea3eb2808acf36bb9e55dfc92d9710fdc0faf600adfef0/diff:/var/lib/docker/overlay2/d7dd1e79996a1295c2230b77331a609268526fbd698148b92dcf77a626e49bb7/diff:/var/lib/docker/overlay2/373b9ef6cbd64a47e387723ffa42dda162d5c58ae71ce8f634ca4a88bf5fff0d/diff:/var/lib/docker/overlay2/4f80af4a4daf8abd1282dad514ef34c1f20648c39aee4cf6941242775f755a7a/diff:/var/lib/docker/overlay2/dd79a6dd0a333107889d50913f363f9cd060655fc456c7fa50880e8579c1392b/diff:/var/lib/docker/overlay2/58b281566c871998e0e2df83cc2bdc78cd8b10d270d3e3aeb283eb9cfea3199a/diff:/var/lib/docker/overlay2/c96541d5dfaa05043a6d142ecf9b74cf55de6d12abc74b2e6c093ed7c6885fe8/diff:/var/lib/docker/overlay2/18458bba6b4e515466e7feabe8ed48bf72cbd078a570c048c5d8658bcc0174de/diff:/var/lib/docker/overlay2/477b71d3abcde7a5364480e89284912045c94a536ac27be2785802cdf4a418ae/diff:/var/lib/docker/overlay2/86dba6819ac6d6e32a5a7fb01584c537e8c32f4ab7229f889f9d7ea94bef7b47/diff:/var/lib/docker/overlay2/0a1bd0b6eb3b9c1d555e73d4f36d2aebcda49d61cba5b2378e47e23a28db9d35/diff:/var/lib/docker/overlay2/c26ffa62185c5467e8eec0417bf73a905bd103e5451428b9746c12b784253e81/diff:/var/lib/docker/overlay2/6f0ad731ad6914eba64f975594aa50b338fa830de0a9acb0548f4abb1e324a63/diff:/var/lib/docker/overlay2/1ff11efb04a9f6583c9a503650d24e6b439bfe5a25761d571862dbbb36c11316/diff",
            "MergedDir": "/var/lib/docker/overlay2/84a8a62407aef0d01d4fe157af046a4b9361a0f2fef7e911df78c8864d23b407/merged",
            "UpperDir": "/var/lib/docker/overlay2/84a8a62407aef0d01d4fe157af046a4b9361a0f2fef7e911df78c8864d23b407/diff",
            "WorkDir": "/var/lib/docker/overlay2/84a8a62407aef0d01d4fe157af046a4b9361a0f2fef7e911df78c8864d23b407/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:31ad4a471c6852bfec14d757cc75a566c82a9769f12c3918cf6bf52cc0eeb3d0",
            "sha256:a07e7a00e93029a61ab8b3eef587b80e0a5ca55a2df648e1a4a354009a34dc8b",
            "sha256:0640f8b5b4ef8a7e21cfcc061fc2ee118d9a50ec9fc036b2db7b0c38c6bef2e1",
            "sha256:c14b332296908cf848c5a50aa654876b2ee5ba19be8f418ab7e0f3eb91e9d5cc",
            "sha256:c5b116cff9e493c94b71f693d28f79195516314cc34fd3c9b7e68c79cc08e2cd",
            "sha256:37c3400c9e27230e034483ccd166db059abe98e6e3fce87ad6239af0a2d0197d",
            "sha256:86eaaea0fbe053fe8225201a63baa06bcce8cd74ded2288d35067c50eaebb670",
            "sha256:792279d9cef12184eeedc52272678c5dcd66aa45d51743d3b7b83a406cbd24b0",
            "sha256:009d82996228ca3bc38373e9e175872a0c01a9c815168a28ddbc2cc7b13351fa",
            "sha256:f397960727a286ee1ceb21d4b5a9e225bf789fcfdb29ae61eb2783bb36df3764",
            "sha256:c9c0fec143143a4f5e3c70cc95b966fc8b2820ce97e1f38ef4e2f69ee4878bf9",
            "sha256:da02a5e4d725157ec9459e6e618ed03e5656254b7be6afe7f146a76a19eb1c94",
            "sha256:18c026b393d54d4e447b3384604c89681f0f5f2c537026e9331704572a9eccfb",
            "sha256:900ad90e0c66599dcdb65306cbf7095e06209258ae518f482bfb929f4e8f7bfb",
            "sha256:17efb0bd31dac068086be8dcf0382a1622523c0be48da38b8b2748a8b3ddd2e6",
            "sha256:256148e5e4c3fdc482513aef23d3205996045d887b9c96a0e1647c221bd63904",
            "sha256:d54e46615211a01f7e72f27137210f2d1b43f47fa01bea1d79a327924adc1044"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-29T16:22:57.274142114+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

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

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

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

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

docker.io/timescale/timescaledb:latest-pg15

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

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

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

docker.io/timescale/timescaledb:2.20.0-pg17

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

docker.io/timescale/timescaledb:2.25.0-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

linux/amd64 docker.io953.83MB2026-03-10 15:23
284

docker.io/timescale/timescaledb:2.25.2-pg17

linux/arm64 docker.io935.21MB2026-03-11 15:48
179

docker.io/timescale/timescaledb-ha:pg18

linux/amd64 docker.io4.27GB2026-04-07 20:42
754

docker.io/timescale/timescaledb:latest-pg14

linux/arm64 docker.io1.24GB2026-04-22 17:24
138

docker.io/timescale/timescaledb-ha:pg17-amd64

linux/amd64 docker.io5.10GB2026-05-08 14:59
504

docker.io/timescale/timescaledb-ha:pg18.4-ts2.27.1

linux/amd64 docker.io4.42GB2026-05-29 16:31
253

docker.io/timescale/timescaledb:2.18.0-pg16

linux/amd64 docker.io1.83GB2026-06-24 17:18
84

docker.io/timescale/timescaledb:2.29.0-pg17

linux/amd64 docker.io1.44GB2026-07-29 16:24
15
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×