广告图片

docker.io/timescale/timescaledb:latest-pg14 linux/arm64

docker.io/timescale/timescaledb:latest-pg14 - 国内下载镜像源 浏览次数:15

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

温馨提示: 这是一个 linux/arm64 系统架构镜像

TimescaleDB 镜像

描述

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

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

源镜像 docker.io/timescale/timescaledb:latest-pg14
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg14-linuxarm64
镜像ID sha256:b07899893d9251e9ce1505184e66e33c6753b41417fa3482ef742a178e5f90ef
镜像TAG latest-pg14-linuxarm64
大小 1.24GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/arm64
浏览量 15 次
贡献者
镜像创建 2025-04-30T19:03:43.14933856Z
同步时间 2026-04-22 17:24
开放端口
5432/tcp
目录挂载
/var/lib/postgresql/data
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin GOSU_VERSION=1.17 LANG=en_US.utf8 PG_MAJOR=14 PG_VERSION=14.17 PG_SHA256=6ce0ccd6403bf7f0f2eddd333e2ee9ba02edfa977c66660ed9b4b1057e7630a1 DOCKER_PG_LLVM_DEPS=llvm15-dev clang15 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:latest-pg14-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg14-linuxarm64  docker.io/timescale/timescaledb:latest-pg14

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-05-01 03:03:43  24.72MB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= PG_VERSION=14 PG_MAJOR_VERSION=14 ALPINE_VERSION=3.20 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=15 TS_VERSION=2.19.3 /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
                        
# 2025-05-01 02:42:28  0.00B 定义构建参数
ARG TS_VERSION=2.19.3
                        
# 2025-05-01 02:42:28  418.45MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2025-05-01 02:42:26  392.44MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2025-05-01 02:42:25  15.51MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2025-05-01 02:36:14  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2025-05-01 02:36:14  133.96MB 执行命令并创建新的镜像层
RUN |6 OSS_ONLY= PG_VERSION=14 PG_MAJOR_VERSION=14 ALPINE_VERSION=3.20 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=15 /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;     make install;     apk del .vector-deps; # buildkit
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=14
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG CLANG_VERSION=15
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG PG_VERSION=14
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.7.2
                        
# 2025-05-01 02:26:41  2.31MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= PG_VERSION=14 PG_MAJOR_VERSION=14 ALPINE_VERSION=3.20 /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 ] ; then         apk add --no-cache postgresql${PG_VERSION}-plpython3;     fi # buildkit
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG ALPINE_VERSION=3.20
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=14
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG PG_VERSION=14
                        
# 2025-05-01 02:26:41  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2025-05-01 02:26:41  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2025-02-27 08:53:12  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2025-02-27 08:53:12  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2025-02-27 08:53:12  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2025-02-27 08:53:12  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-02-27 08:53:12  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2025-02-27 08:53:12  15.08KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2025-02-27 08:53:12  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2025-02-27 08:53:12  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2025-02-27 08:53:12  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2025-02-27 08:53:12  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2025-02-27 08:53:12  57.37KB 执行命令并创建新的镜像层
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-02-27 08:53:12  237.50MB 执行命令并创建新的镜像层
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 	; 		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)"; 	wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; 	wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; 		export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; 	export CLANG=clang-15; 		./configure 		--enable-option-checking=fatal 		--build="$gnuArch" 		--enable-integer-datetimes 		--enable-thread-safety 		--enable-tap-tests 		--disable-rpath 		--with-uuid=e2fs 		--with-gnu-ld 		--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-ldap 		--with-tcl 		--with-perl 		--with-python 		--with-openssl 		--with-libxml 		--with-libxslt 		--with-icu 		--with-llvm 		--with-lz4 	; 	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-02-27 08:53:12  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm15-dev 		clang15
                        
# 2025-02-27 08:53:12  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=6ce0ccd6403bf7f0f2eddd333e2ee9ba02edfa977c66660ed9b4b1057e7630a1
                        
# 2025-02-27 08:53:12  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=14.17
                        
# 2025-02-27 08:53:12  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=14
                        
# 2025-02-27 08:53:12  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2025-02-27 08:53:12  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2025-02-27 08:53:12  4.00B 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; ln -svf gosu /usr/local/bin/su-exec; su-exec nobody true # backwards compatibility (removed in PostgreSQL 17+) # buildkit
                        
# 2025-02-27 08:53:12  2.65MB 执行命令并创建新的镜像层
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-02-27 08:53:12  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.17
                        
# 2025-02-27 08:53:12  3.07KB 执行命令并创建新的镜像层
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-02-14 11:00:07  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-02-14 11:00:07  8.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.20.6-aarch64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:b07899893d9251e9ce1505184e66e33c6753b41417fa3482ef742a178e5f90ef",
    "RepoTags": [
        "timescale/timescaledb:latest-pg14",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg14-linuxarm64"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:0f5553d37abbe0f20bfe0a04dab5d1238955b5cda2711aba403090f95b6e51ff",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:61fbfc16bbfd7192311a32c945ad38dab487298f3ee9b3a87732f0cbee273da8"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-04-30T19:03:43.14933856Z",
    "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.17",
            "LANG=en_US.utf8",
            "PG_MAJOR=14",
            "PG_VERSION=14.17",
            "PG_SHA256=6ce0ccd6403bf7f0f2eddd333e2ee9ba02edfa977c66660ed9b4b1057e7630a1",
            "DOCKER_PG_LLVM_DEPS=llvm15-dev \t\tclang15",
            "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": 1236440001,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/be7c551055a962443ef8cb259cd1a32d64de77b5d1b41248578c25bae76aa7c6/diff:/var/lib/docker/overlay2/5a385e1a7ded2179207252cbd5a22fcb0742dd07843700e6b301ad3838853b1e/diff:/var/lib/docker/overlay2/582753ce9c51662fa27f371a0956cac070d85d25f11d7a78bfb98019d9dfc2e1/diff:/var/lib/docker/overlay2/0160860c5909f2a679f1a5a3c477ea96fa0b3f32c95d03c1c3f1908fa811088b/diff:/var/lib/docker/overlay2/384732351a4bedbdd9835f72d10450000f7527bffccb9687cf3f1ef6c67a6e15/diff:/var/lib/docker/overlay2/987baa2267ea6bbf1df101ae0f67c9caacebf165e3f61960f6f801a390b721fa/diff:/var/lib/docker/overlay2/d77dc8e5952a5b4cabd0d1dbe62bbb6811f677ed6021375ced6e34763131d02a/diff:/var/lib/docker/overlay2/68c55e92f9b6c8c00faeccef8cb6ec3171b5a175aa7d6ad1d414cc49cd38a9a5/diff:/var/lib/docker/overlay2/5b18d6aad2ea3396ca4beabd7ca6ef0adb6bb1dcfb6d85392c700c3d1ead0d07/diff:/var/lib/docker/overlay2/936ab32bc85f14af619dd07da9e95615b7e8b8687ff2f47a86ab95650fc85c21/diff:/var/lib/docker/overlay2/d387062448d6d17e39297534907238e1b0feaef552eb651958040c176a533a43/diff:/var/lib/docker/overlay2/c56623f20fd649d5da3d76e0657af0905b7b36e33bd0744eef182743d5d8d685/diff:/var/lib/docker/overlay2/b062622e0e7b560c8dea1c198db894cc37541499b809293dd2012a20f00e406e/diff:/var/lib/docker/overlay2/beadb3a79c5ec3645c820ff828be44b7970c13d24369dc22c8d292aae5f248d2/diff:/var/lib/docker/overlay2/eb1dadc25e87e0fb3d1a5816051e44b0261c3300ea30502ab4cb1417a246781f/diff:/var/lib/docker/overlay2/066fac2e331ba9da3eb8adde3dfbca6e2d668b9fd36ef32b3f12ee208e00f7cc/diff:/var/lib/docker/overlay2/9865590db67dda613988921b0417fb40be33950df10cbee213dafed00be4adca/diff",
            "MergedDir": "/var/lib/docker/overlay2/54221ec1b77a39a9d185e66859760b3dfc68a7c02dd2f520bf169a2427fc7829/merged",
            "UpperDir": "/var/lib/docker/overlay2/54221ec1b77a39a9d185e66859760b3dfc68a7c02dd2f520bf169a2427fc7829/diff",
            "WorkDir": "/var/lib/docker/overlay2/54221ec1b77a39a9d185e66859760b3dfc68a7c02dd2f520bf169a2427fc7829/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:dd9c8f8612c8721a83c67026272f1c54979060748d7abea08715bf7eaaf58d40",
            "sha256:d95f26cf17b84a7f687eb0afb22a2e6218cccafaf171c9499bb3b6aa682ff784",
            "sha256:d68109526a05f4a51eaa7a5015f66983ac56d4e17e8d4445305e124a38889452",
            "sha256:4375ae9f3efcec85f680544dce328090f4392b70d1491d5dcdf0d4c346208a70",
            "sha256:f70cab128a6868b71d9e4a6177e29286c40cdd4e02fbf7aa0edd0932be181220",
            "sha256:9feffcbe44b76f706166a43f55d705cc21868074a96e7aa5441101223398d403",
            "sha256:31e9ec27e54b47fe98ae0c98d1810a19dd9f60324c95c4f602f3cd644dff41cb",
            "sha256:962c9c4160c961e00dd9e488a2b6f79d46bc0ef7c80d4051e917e287616eeeb4",
            "sha256:41308935e0898e8893ebed6774376550838caf3765a17c9f6d5beb755d8a8a87",
            "sha256:ffd6abb140286e1e9da3e92c4cd320c73159bf766f3d6b752079aefdcaf91b01",
            "sha256:ce75f5cbf5b9f973fe53dd525281ab09ef0782d7456f51392b48b6ec0e03757d",
            "sha256:ce57e00700339ce124f63cd3172c2762da9a2cf934195fddcbb6fbd54d48267a",
            "sha256:10fe8b4521a0cc84b47826d6d36b2cd454c090f2f927353a0cfc50816eb98cfe",
            "sha256:afc76345cd8ed0a2abd86e3b03bdef7a2d6609adb4d76bfa18f36ef4288f1b02",
            "sha256:da46e67d264ef8f88e448769c925e24157f1b665d222cf959514603831bc49c6",
            "sha256:f49570eca51e2d3d9111495f856d64b95c5934d466088b7d8d3943ab56a3673b",
            "sha256:a601f6aac182ba67ba4c6115dd60f565d0be6ecc200248f66c91248941340f25",
            "sha256:5acc4a77e57660bdce1252d00ebe9909a114f8dc7e62af9c4471142d38e66ae4"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-04-22T17:24:13.430456936+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

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

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

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

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

docker.io/timescale/timescaledb:latest-pg15

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

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

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

docker.io/timescale/timescaledb:2.20.0-pg17

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

docker.io/timescale/timescaledb:2.25.0-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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

docker.io/timescale/timescaledb-ha:pg18

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

docker.io/timescale/timescaledb:latest-pg14

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