docker.io/timescale/timescaledb:2.25.2-pg17 linux/arm64

docker.io/timescale/timescaledb:2.25.2-pg17 - 国内下载镜像源 浏览次数:11 温馨提示: 这是一个 linux/arm64 系统架构镜像

TimescaleDB 镜像

描述

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

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

源镜像 docker.io/timescale/timescaledb:2.25.2-pg17
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17-linuxarm64
镜像ID sha256:200af7b2707a959af6a52c5dea7251d3fb11bed635f582b31b4e6ba35ca7f05a
镜像TAG 2.25.2-pg17-linuxarm64
大小 935.21MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/arm64
浏览量 11 次
贡献者
镜像创建 2026-03-03T10:13:36.452637805Z
同步时间 2026-03-11 15:48
开放端口
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.2-pg17-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17-linuxarm64  docker.io/timescale/timescaledb:2.25.2-pg17

Containerd拉取命令

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

Shell快速替换命令

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

镜像构建历史


# 2026-03-03 18:13:36  25.98MB 执行命令并创建新的镜像层
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.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-03-03 17:48:46  0.00B 定义构建参数
ARG TS_VERSION=2.25.2
                        
# 2026-03-03 17:48:46  322.44MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2026-03-03 17:48:45  286.74MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2026-03-03 17:48:44  15.70MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2026-03-03 17:44:34  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2026-03-03 17:44:34  12.65MB 执行命令并创建新的镜像层
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-03-03 17:31:46  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2026-03-03 17:31:46  0.00B 定义构建参数
ARG CLANG_VERSION=19
                        
# 2026-03-03 17:31:46  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2026-03-03 17:31:46  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.8.1
                        
# 2026-03-03 17:31:46  2.46MB 执行命令并创建新的镜像层
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-03-03 17:31:46  0.00B 定义构建参数
ARG ALPINE_VERSION=3.21
                        
# 2026-03-03 17:31:46  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2026-03-03 17:31:46  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2026-03-03 17:31:46  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2026-03-03 17:31:46  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2025-11-15 03:22:27  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2025-11-15 03:22:27  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2025-11-15 03:22:27  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2025-11-15 03:22:27  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-11-15 03:22:27  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2025-11-15 03:22:27  16.36KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2025-11-15 03:22:27  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2025-11-15 03:22:27  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2025-11-15 03:22:27  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2025-11-15 03:22:27  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2025-11-15 03:22:27  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:22:27  258.90MB 执行命令并创建新的镜像层
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:44  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm19-dev 		clang19
                        
# 2025-11-15 03:19:44  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=ef9e343302eccd33112f1b2f0247be493cb5768313adeb558b02de8797a2e9b5
                        
# 2025-11-15 03:19:44  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=17.7
                        
# 2025-11-15 03:19:44  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=17
                        
# 2025-11-15 03:19:44  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2025-11-15 03:19:44  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2025-11-15 03:19:44  2.08MB 执行命令并创建新的镜像层
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:44  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.19
                        
# 2025-11-15 03:19:42  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  8.17MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.5-aarch64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:200af7b2707a959af6a52c5dea7251d3fb11bed635f582b31b4e6ba35ca7f05a",
    "RepoTags": [
        "timescale/timescaledb:2.25.2-pg17",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17-linuxarm64"
    ],
    "RepoDigests": [
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:0c1e4138e1f2eb46d0b4a5f24e06d5ac57edfeb5beb1abd3dd16dbb161145109"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-03-03T10:13:36.452637805Z",
    "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": "arm64",
    "Os": "linux",
    "Size": 935206447,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/433d2ba51c2dcae0738afd9574888e34d1d4fc69ad8da29b21c04c92d9e81709/diff:/var/lib/docker/overlay2/3470d36f03bdf946a6ddd277d261fe584ad55258f9215e0bdb3524ed1174bdec/diff:/var/lib/docker/overlay2/37b610abc4ecc8b7b10c8395e828cf3e4a299eae7dc363d8da2aa825b8a1e10a/diff:/var/lib/docker/overlay2/026200951f58bf308bdf6e45373b13ef6a4d36b17727a999aca3880092604738/diff:/var/lib/docker/overlay2/5f4919dc0a18c913e3a2fab90310081404c877367c72295116859c8a44be9d78/diff:/var/lib/docker/overlay2/4154d4a37fe301d46582c2da995d9e85dc9168b741d761ab39f532ac99f1d10d/diff:/var/lib/docker/overlay2/451e943d14c98d56cba25a9f43b7858891311e336fd33e7e58c154f84a5667f4/diff:/var/lib/docker/overlay2/be3865e94b0d9c0da62add4e3d729ed67d36be21070e16f94c09de7c228f9a74/diff:/var/lib/docker/overlay2/fe5da5377ed5c0538e7e1221ee1a91dc6d41a851c4d4532f5c04f52de5ce6f28/diff:/var/lib/docker/overlay2/9149fccb0919e5ad028ecc6584f9b74a6f99a78b9d9eccfe2b745401f2b1aba1/diff:/var/lib/docker/overlay2/a8e4b6a04ab00c409c660db7fa96e2527712aed52db244b8535847d32252e685/diff:/var/lib/docker/overlay2/f60acaabb72a193d294e696f93c1a3e3fd9aa398ea0072ba611dd6a0f5698ee2/diff:/var/lib/docker/overlay2/877222f0cf85267d81c5d835e18fc025e1f2184121afee1855d6aa10af07c5ad/diff:/var/lib/docker/overlay2/7368966eb77a077a289aec3caa9435d96a2c6967026c5548421f9fb6ef459fd4/diff:/var/lib/docker/overlay2/a783dc326a6e1216d587e47a2bafe6104ea8643d01bf5baf7f33c6947ab209be/diff:/var/lib/docker/overlay2/c9ad238a56214f20a54d6fd5a6a5b4f1a6689fe65689c4d1d5b76edba1e38ab1/diff",
            "MergedDir": "/var/lib/docker/overlay2/25ef1d6cc14b9e1ec302be46552f409fa57b97f78c4899c8b36ab72540c7fbd3/merged",
            "UpperDir": "/var/lib/docker/overlay2/25ef1d6cc14b9e1ec302be46552f409fa57b97f78c4899c8b36ab72540c7fbd3/diff",
            "WorkDir": "/var/lib/docker/overlay2/25ef1d6cc14b9e1ec302be46552f409fa57b97f78c4899c8b36ab72540c7fbd3/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:982780712fdf5e22c7ed01172785fd7059a9ec11cb375c7133dc5b06c24250ff",
            "sha256:bc29a2cdf03b1dfdd1430d7c45c889fdbf520e3fdba4f2b16681960b1f018e42",
            "sha256:44ba44d4cd31fb82c0b33cc0954819492456c0e438b60d80edd00f99e78926a4",
            "sha256:7eadf13fe0f983d09df091b58727b0f3d9257773f1c4122d248cdf31fc91d05a",
            "sha256:824e8fba31998f09584d801d9f7022e10e94929712adee6be74356c897cfafd5",
            "sha256:ca8f05e01a6ebdd7348272a11cecfed5aa593715093f42f7b137206309f97341",
            "sha256:32843c6452ee750f6537381f8a14d0c7e998ebbf5696ba29abcf38f74e59591f",
            "sha256:185df0bcc8823c8fad29221ef167c26df205d2a384caec5bb75073529e5048d4",
            "sha256:f2be844ec0de2c2f77b6b0ee34c66c4432ad4c47207cd877c2c7668b5ff330b5",
            "sha256:76bcb840a31a781c4549e1fe6b60261459c35eb8f6451bd859ce6e8db6ff2530",
            "sha256:6bda9204a71dcd7ca86888b883e4d998c3d446b216212e0df939fc232b861047",
            "sha256:6d0e6b85b2f12386fe1252daf9f2045cd367f34a88e35cc87333d18a326512ec",
            "sha256:ddd942c0fa048784e65d79c8898bde426f8302030a9f464dcbdf6aa160351028",
            "sha256:8375dbf041c6663a3e28e81253497bc42ee8b6bb1bd2faf6db2ab52ce5f0072a",
            "sha256:ded27ebe2787df1d14b7c5dc2b32e0b361312920ad0ccbbca867e114e21c41a8",
            "sha256:2812ad38878ff03dfd613f2d2329b674011f1dab395b86571639ea1a2cf15ad6",
            "sha256:16e89be99ff5f80cd3ee28167d5bf2078ffabf152be7e07a8405e767ccba4fed"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-03-11T15:47:31.468051241+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

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

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

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

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

docker.io/timescale/timescaledb:latest-pg15

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

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

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

docker.io/timescale/timescaledb:2.20.0-pg17

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

docker.io/timescale/timescaledb:2.25.0-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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