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

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

TimescaleDB 镜像

描述

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

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

源镜像 docker.io/timescale/timescaledb:2.19.2-pg14-oss
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.19.2-pg14-oss-linuxarm64
镜像ID sha256:ed1a7d33c9394ed4f38f935755ce329d93b0ae88aeb80d47f6d305749a4037ff
镜像TAG 2.19.2-pg14-oss-linuxarm64
大小 1.02GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/arm64
浏览量 36 次
贡献者 zf********4@outlook.com
镜像创建 2025-04-07T18:02:49.395960248Z
同步时间 2025-07-16 11:58
更新时间 2025-08-02 09:59
开放端口
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:2.19.2-pg14-oss-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.19.2-pg14-oss-linuxarm64  docker.io/timescale/timescaledb:2.19.2-pg14-oss

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-04-08 02:02:49  19.13MB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= -DAPACHE_ONLY=1 PG_VERSION=14 PG_MAJOR_VERSION=14 ALPINE_VERSION=3.20 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=15 TS_VERSION=2.19.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                 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-04-08 01:51:23  0.00B 定义构建参数
ARG TS_VERSION=2.19.2
                        
# 2025-04-08 01:51:23  404.87MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2025-04-08 01:51:22  193.15MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2025-04-08 01:51:21  15.51MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2025-04-08 01:45:21  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2025-04-08 01:45:21  133.98MB 执行命令并创建新的镜像层
RUN |6 OSS_ONLY= -DAPACHE_ONLY=1 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;     if [ "$PG_MAJOR_VERSION" -ge 17 ] ; then         apk add --no-cache postgresql-pgvector;     else         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;     fi # buildkit
                        
# 2025-04-08 01:36:39  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=14
                        
# 2025-04-08 01:36:39  0.00B 定义构建参数
ARG CLANG_VERSION=15
                        
# 2025-04-08 01:36:39  0.00B 定义构建参数
ARG PG_VERSION=14
                        
# 2025-04-08 01:36:39  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.7.2
                        
# 2025-04-08 01:36:39  2.31MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= -DAPACHE_ONLY=1 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-04-08 01:36:39  0.00B 定义构建参数
ARG ALPINE_VERSION=3.20
                        
# 2025-04-08 01:36:39  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=14
                        
# 2025-04-08 01:36:39  0.00B 定义构建参数
ARG PG_VERSION=14
                        
# 2025-04-08 01:36:39  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2025-04-08 01:36:39  0.00B 定义构建参数
ARG OSS_ONLY= -DAPACHE_ONLY=1
                        
# 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:ed1a7d33c9394ed4f38f935755ce329d93b0ae88aeb80d47f6d305749a4037ff",
    "RepoTags": [
        "timescale/timescaledb:2.19.2-pg14-oss",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.19.2-pg14-oss-linuxarm64"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:a3604ef01a5f401ac6c8784bcb5912de4c563c7de20b06f7e80440d022afefc3",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:d548ea56e27a0e2f09e5a979d712eff1a0a8d4425734e4a418724d28b62bd2af"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-04-07T18:02:49.395960248Z",
    "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": 1017986013,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/e4c073cbb4a554d2c1eb1b79f6e5298af7fdf0edb791a749be2bea474044ba3b/diff:/var/lib/docker/overlay2/29de5c31931667c65e139b40461b2e573451376387aa64e7e476e37c533310f6/diff:/var/lib/docker/overlay2/063bf5366668c30d1cc42b7183f21b70576e00b4543c5924f3b6afd84a0b5c44/diff:/var/lib/docker/overlay2/9ac07997c8bb6bc4e5ab64ed3332335395efc91007ecbc778aa530aad0ea5ea1/diff:/var/lib/docker/overlay2/3c38976c075d6aed0bfc0118fad49aae515a786b199bb40263a8c0b7b6fd4945/diff:/var/lib/docker/overlay2/545271a5eabb5b63f8157d3fdb2bf01b017fa23a7271508ca25de013f27f1505/diff:/var/lib/docker/overlay2/88304130bc23d569e9a752abf8ed0cb322d4b0afd913aa2cf002da686d7d5bde/diff:/var/lib/docker/overlay2/f1e1268356422c2b36ff7203fc2b0204bb02217fced3583a13a4412807bba80e/diff:/var/lib/docker/overlay2/feb4d2534a88bc46464093b41e5eb05a68bd0a614845be26938d244357c1b6ed/diff:/var/lib/docker/overlay2/464379f69c65a14539dca73b44c05c9adc32c964cf60a6e1e18e7e0333b1624f/diff:/var/lib/docker/overlay2/3897eb0f96a1f8b6512007cd98a1ae3721d6781f36938a97c00a9ae0f7b19434/diff:/var/lib/docker/overlay2/2f51e7adf70d5fa653c83beebc45832ed18f3dac0d1d34a97d02f58db155c0b5/diff:/var/lib/docker/overlay2/bfa9bea29897e3d7b81dd94b1fbbe51715a4012421f202ad9b6322ae0f04da8e/diff:/var/lib/docker/overlay2/6dece538fa7abae66c3aa8126a64c04852d11fa5c80ee25658f9c77d058ff4f6/diff:/var/lib/docker/overlay2/9388a1f6e229ec467a11aeb3d1acdc5e9a2a6df2b09af326110b28a60586a82f/diff:/var/lib/docker/overlay2/7afa4e0c034dfc9422b17050ed4be92d4d121602c633274a5d7e72ff988b5133/diff:/var/lib/docker/overlay2/b0fd9dfc2e63930a40fd704cd9bf8b9d5a2f4f0fdd3fe88b57300e67ebe8c5b0/diff",
            "MergedDir": "/var/lib/docker/overlay2/1e2701a094b2a309105c00c43cb1994e238d61f7937114586d79786c34961421/merged",
            "UpperDir": "/var/lib/docker/overlay2/1e2701a094b2a309105c00c43cb1994e238d61f7937114586d79786c34961421/diff",
            "WorkDir": "/var/lib/docker/overlay2/1e2701a094b2a309105c00c43cb1994e238d61f7937114586d79786c34961421/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:44d4232deb1e95ea143f33e8d90b39c6598945078a38b9ec7948b98b0a50343b",
            "sha256:6d148e894131bc3d16525e168e2353f0a1ceeeea13ee13767375d224ccdb8456",
            "sha256:49409d219d69440206c851996aac77874d199a75554b0c2c1272a32e48a4e631",
            "sha256:ab3181833626e8d0992780305e6489c3d0bbb5d4f1128df1ae4dc67cfe8af264",
            "sha256:86653f3bdf9c143753ae85d3bc082bcf4f861ba5a50be2a22320c3578d6d0892",
            "sha256:c3911f64bb9ad03706d2b17010b6e33d6101491cdd65b79c2c41a3d33ffea705",
            "sha256:8a47006391a95027048e6ff8ebfbe26962b533ea1a821c8928b682f6b6283e74"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-07-16T11:57:18.820476786+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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