logo
docker.io/timescale/timescaledb:2.29.2-pg18
linux/arm64 docker.io 请确认架构匹配

TimescaleDB 镜像

描述

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

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

10
浏览次数
960.12MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.2-pg18-linuxarm64
源镜像
docker.io/timescale/timescaledb:2.29.2-pg18
镜像ID
sha256:431e7a4dc9e2ff8071beaec80c9d4160a2a3a7ccb0cc35583578853d668b510e
镜像 TAG
2.29.2-pg18-linuxarm64
镜像大小
960.12MB
平台架构
linux/arm64
镜像源
docker.io
CMD
postgres
启动入口
docker-entrypoint.sh
工作目录
/
OS/平台
linux/arm64
镜像创建
2026-08-18T09:48:44.633130295Z
同步时间
2026-09-04 10:09
浏览量
10 次
贡献者
🔌 开放端口 1
5432/tcp
📁 目录挂载 1
 /var/lib/postgresql
⚙️ 环境变量 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=18 3
PG_VERSION=18.6 4
PG_SHA256=555610c24d53e4316da5b7d3fc25c279d96856d5e0e23ee308c328c5fa881d9f 5
DOCKER_PG_LLVM_DEPS=llvm21-dev clang21 6
PGDATA=/var/lib/postgresql/18/docker 7
🏷️ 镜像标签 1
KeyValue
Timescale https://www.timescale.com maintainer
🛡️ 镜像安全扫描
alpine 3.23.5 Trivy 2026-09-04 10:09 查看完整报告
15
低危 LOW
43
中危 MEDIUM
67
高危 HIGH
4
严重 CRITICAL
受影响目标 (4)
docker.io/timescale/timescaledb:2.29.2-pg18 (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.2-pg18-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.2-pg18-linuxarm64  docker.io/timescale/timescaledb:2.29.2-pg18

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#timescale/timescaledb:2.29.2-pg18#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.2-pg18-linuxarm64#' 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.2-pg18-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.2-pg18-linuxarm64  docker.io/timescale/timescaledb:2.29.2-pg18'

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-08-18 17:48:44  39.39MB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= PG_VERSION=18 PG_MAJOR_VERSION=18 ALPINE_VERSION=3.23 PGVECTOR_VERSION=v0.8.1 CLANG_VERSION=21 TS_VERSION=2.29.2 /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-08-18 17:08:50  0.00B 定义构建参数
ARG TS_VERSION=2.29.2
                        
# 2026-08-18 17:08:50  317.81MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2026-08-18 17:08:49  278.59MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2026-08-18 17:08:47  16.92MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2026-08-18 17:03:40  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2026-08-18 17:03:40  7.97MB 执行命令并创建新的镜像层
RUN |6 OSS_ONLY= PG_VERSION=18 PG_MAJOR_VERSION=18 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-08-18 16:52:04  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=18
                        
# 2026-08-18 16:52:04  0.00B 定义构建参数
ARG CLANG_VERSION=21
                        
# 2026-08-18 16:52:04  0.00B 定义构建参数
ARG PG_VERSION=18
                        
# 2026-08-18 16:52:04  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.8.1
                        
# 2026-08-18 16:52:04  2.90MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= PG_VERSION=18 PG_MAJOR_VERSION=18 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-08-18 16:52:04  0.00B 定义构建参数
ARG ALPINE_VERSION=3.23
                        
# 2026-08-18 16:52:04  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=18
                        
# 2026-08-18 16:52:04  0.00B 定义构建参数
ARG PG_VERSION=18
                        
# 2026-08-18 16:52:04  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2026-08-18 16:52:04  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2026-08-14 03:17:22  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2026-08-14 03:17:22  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2026-08-14 03:17:22  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2026-08-14 03:17:22  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2026-08-14 03:17:22  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2026-08-14 03:17:22  16.89KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2026-08-14 03:17:22  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql]
                        
# 2026-08-14 03:17:22  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/18/docker
                        
# 2026-08-14 03:17:22  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2026-08-14 03:17:22  65.26KB 执行命令并创建新的镜像层
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-08-14 03:17:22  285.75MB 执行命令并创建新的镜像层
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 		curl-dev 		liburing-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-libcurl 		--with-liburing 		--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-08-14 03:14:55  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm21-dev 		clang21
                        
# 2026-08-14 03:14:55  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=555610c24d53e4316da5b7d3fc25c279d96856d5e0e23ee308c328c5fa881d9f
                        
# 2026-08-14 03:14:55  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=18.6
                        
# 2026-08-14 03:14:55  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=18
                        
# 2026-08-14 03:14:55  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2026-08-14 03:14:55  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2026-08-14 03:14:55  2.03MB 执行命令并创建新的镜像层
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-08-14 03:14:55  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.19
                        
# 2026-08-14 03:14:52  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:19:57  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2026-06-23 03:19:57  8.66MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.5-aarch64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:431e7a4dc9e2ff8071beaec80c9d4160a2a3a7ccb0cc35583578853d668b510e",
    "RepoTags": [
        "timescale/timescaledb:2.29.2-pg18",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.29.2-pg18-linuxarm64"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:9508616d5b941ed931198504c5db3fb47e8f53f790732ea1e889591f1062057c",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:0e854ba70f9bbb52db84f15ac2855f688a90b432385777212b5e144c981802cc"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-08-18T09:48:44.633130295Z",
    "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=18",
            "PG_VERSION=18.6",
            "PG_SHA256=555610c24d53e4316da5b7d3fc25c279d96856d5e0e23ee308c328c5fa881d9f",
            "DOCKER_PG_LLVM_DEPS=llvm21-dev \t\tclang21",
            "PGDATA=/var/lib/postgresql/18/docker"
        ],
        "Cmd": [
            "postgres"
        ],
        "Image": "",
        "Volumes": {
            "/var/lib/postgresql": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "Timescale https://www.timescale.com"
        },
        "StopSignal": "SIGINT"
    },
    "Architecture": "arm64",
    "Os": "linux",
    "Size": 960122374,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/a628bc938411b7086344668efecac761bc45eafc8391ee086b776699ecc5eeca/diff:/var/lib/docker/overlay2/8fc96847251424cb129e3a42bc4fcceb9b82f9ce53358b553748f43243bdbc1b/diff:/var/lib/docker/overlay2/3d71edd676c27910a8c417abc64938282e25fb7ce53e1a1472b883339d783117/diff:/var/lib/docker/overlay2/8cda15fd9b4e1a9ed429ef39d61f6903c5141438c0c44cede2d03c42a33b9197/diff:/var/lib/docker/overlay2/3577b8bea036baa44bba0ab04120faf6530421212c03a6eec4d605694df91f75/diff:/var/lib/docker/overlay2/23b95addc27741ff038c3bb4c9c15ae4be9e86a9999477ab30766a5c284f021b/diff:/var/lib/docker/overlay2/fa75801f939356e671af6545c19c62efaf9fff28f1cce8abd38b58da8b3388f1/diff:/var/lib/docker/overlay2/285593c2904260924a43feec96d1d1a4d7df76f4c9b3ee44e5085333c0443253/diff:/var/lib/docker/overlay2/2df1ca8cbf4ffa5ad4388eb6d7b55a891beabfcd24dbb2ffe0c5da4ab1470067/diff:/var/lib/docker/overlay2/fb2c59b7800dec1776ad70d6fd936e846dd8d8186d1913691ac8ad42efc1008e/diff:/var/lib/docker/overlay2/389f51a0aab231d50e5c00e6e09227c39509b327fceb3af25768c5fb74b77667/diff:/var/lib/docker/overlay2/4199fdd6cc364f6131eb857e34bd1d1b195f3dc666491c63a22b4e4f175d63c9/diff:/var/lib/docker/overlay2/8a045130522b1dce718445b87c61c4297ce54d07a7434166be52420abdb82639/diff:/var/lib/docker/overlay2/10695099f0fac116295b62f9988325da697eb07caa6bf2a24610cbf043df8386/diff:/var/lib/docker/overlay2/b6cbcb7b680b4d5b42c1a2d4345d8ba2f9fb20e755724c55f3e02644edc6a52b/diff",
            "MergedDir": "/var/lib/docker/overlay2/a8056362bbf4693571bb357a70bd09c63c78f9047e5a0170dbfa5b1502b7fd90/merged",
            "UpperDir": "/var/lib/docker/overlay2/a8056362bbf4693571bb357a70bd09c63c78f9047e5a0170dbfa5b1502b7fd90/diff",
            "WorkDir": "/var/lib/docker/overlay2/a8056362bbf4693571bb357a70bd09c63c78f9047e5a0170dbfa5b1502b7fd90/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:91d5cf66444f05b8c72e1b9d725c1752b9b015b68a7918125fc46ecdb7cc46d5",
            "sha256:369608c623c6091e10d661d3c723379765286e44fb00edfe7a9030d6831932e0",
            "sha256:9feb2371f4ca2336cde0a621c31c0c5f0eb00e2300de5cb79a9d0a6f95b46a6e",
            "sha256:7d735b352c4c6c447fcc82c5b4a2ffc574ef50f152a590585b25ecca2386b4f8",
            "sha256:6df61dd5f9bc6cd1cbe3625a95e63bea22f7580a6ae9f8cdbd048b362d11d26a",
            "sha256:94d8fc994d60665c6f4ca4e8c875e766a0643b8b61c72e2a5013dfa2af1b29c2",
            "sha256:8cc60386a690c038259979a132698251437a3b541221b5ce6df073f4ed25b91c",
            "sha256:6141317959315512118383f2fa1d912264c6227bfec1497afee54f0ee003f23f",
            "sha256:be10789e729d8bec72e8ddf6fb7028e66a06a355adff568e0774abfbc3666b4b",
            "sha256:3678ce70e37253396614cb8768539f6357cc77c10365461ed886747595cad354",
            "sha256:fdd9ae85619b1e82b532db6ceac73f8a4ef2520f30c35cd8ad45ed1c53c42b3c",
            "sha256:5f8474106ca4b51a8adcd3653b165ce4af6e3f25400a030928149426c8d94d53",
            "sha256:00e431b1f7f2cc901ed2cb52e0af1dd92f1ed76e74636779c05d70075d6940ed",
            "sha256:990fae0b45db7c8b8fe1f58454a3b1b1de6c59e141ac238f92ca9eb00e1fe487",
            "sha256:cfe799e7b82062bd807fddc4255b600889193950dd602e6bba13d0ce72ad8c29",
            "sha256:c4df70802913ef04d2ff9a7cb5f8e7457ad98a440b94bcae627b735d1b58b01b"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-09-04T10:08:32.346815179+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

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

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

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

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

docker.io/timescale/timescaledb:latest-pg15

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

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

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

docker.io/timescale/timescaledb:2.20.0-pg17

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

docker.io/timescale/timescaledb:2.25.0-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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

docker.io/timescale/timescaledb-ha:pg18

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

docker.io/timescale/timescaledb:latest-pg14

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

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

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

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

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

docker.io/timescale/timescaledb:2.18.0-pg16

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

docker.io/timescale/timescaledb:2.29.0-pg17

linux/amd64 docker.io1.44GB2026-07-29 16:24
116

docker.io/timescale/timescaledb-ha:pg18.4-ts2.29.0-all-oss

linux/amd64 docker.io3.80GB2026-08-03 16:19
98

docker.io/timescale/timescaledb:2.16.1-pg16

linux/amd64 docker.io699.12MB2026-08-26 15:42
44

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

linux/amd64 docker.io2.28GB2026-09-02 15:09
27

docker.io/timescale/timescaledb:2.29.2-pg18

linux/arm64 docker.io960.12MB2026-09-04 10:09
9
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×