docker.io/timescale/timescaledb:latest-pg15 linux/amd64

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

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

TimescaleDB 镜像

描述

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

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

源镜像 docker.io/timescale/timescaledb:latest-pg15
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg15
镜像ID sha256:d126528467b42fc1395e5f7039acd01d3eb14bc07f5ca896de56c52df08bb0d4
镜像TAG latest-pg15
大小 1.30GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 9 次
贡献者
镜像创建 2025-10-29T10:09:42.98654288Z
同步时间 2025-11-11 19:38
更新时间 2025-11-12 00:26
开放端口
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=15 PG_VERSION=15.13 PG_SHA256=4f62e133d22ea08a0401b0840920e26698644d01a80c34341fb732dd0a90ca5d 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-pg15
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg15  docker.io/timescale/timescaledb:latest-pg15

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-10-29 18:09:42  26.27MB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= PG_VERSION=15 PG_MAJOR_VERSION=15 ALPINE_VERSION=3.20 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=15 TS_VERSION=2.23.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                 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-10-29 18:04:44  0.00B 定义构建参数
ARG TS_VERSION=2.23.0
                        
# 2025-10-29 18:04:44  509.72MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2025-10-29 18:04:42  455.97MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2025-10-29 18:04:40  16.04MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2025-10-29 18:04:15  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2025-10-29 18:04:15  48.06MB 执行命令并创建新的镜像层
RUN |6 OSS_ONLY= PG_VERSION=15 PG_MAJOR_VERSION=15 ALPINE_VERSION=3.20 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=15 /bin/sh -c set -ex;     if [ "$PG_MAJOR_VERSION" -lt 18 ] ; then         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;     fi # buildkit
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=15
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG CLANG_VERSION=15
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG PG_VERSION=15
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.7.2
                        
# 2025-10-29 18:02:41  2.32MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= PG_VERSION=15 PG_MAJOR_VERSION=15 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 && "$PG_MAJOR_VERSION" -lt 18 ] ; then         apk add --no-cache postgresql${PG_VERSION}-plpython3;     fi # buildkit
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG ALPINE_VERSION=3.20
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=15
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG PG_VERSION=15
                        
# 2025-10-29 18:02:41  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2025-10-29 18:02:41  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2025-05-09 02:32:48  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2025-05-09 02:32:48  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2025-05-09 02:32:48  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2025-05-09 02:32:48  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-05-09 02:32:48  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2025-05-09 02:32:48  15.08KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2025-05-09 02:32:48  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2025-05-09 02:32:48  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2025-05-09 02:32:48  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2025-05-09 02:32:48  58.75KB 执行命令并创建新的镜像层
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-05-09 02:32:48  233.15MB 执行命令并创建新的镜像层
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/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 		--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-05-09 02:32:48  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm15-dev 		clang15
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=4f62e133d22ea08a0401b0840920e26698644d01a80c34341fb732dd0a90ca5d
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=15.13
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=15
                        
# 2025-05-09 02:32:48  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2025-05-09 02:32:48  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-05-09 02:32:48  2.60MB 执行命令并创建新的镜像层
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-05-09 02:32:48  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.17
                        
# 2025-05-09 02:32:48  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  7.80MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.20.6-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:d126528467b42fc1395e5f7039acd01d3eb14bc07f5ca896de56c52df08bb0d4",
    "RepoTags": [
        "timescale/timescaledb:latest-pg15",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg15"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:d0fb9a1167130aebe6d355c0b44a08219cdce75d46761fab3bab5c09533206e8",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:47aab01af440cc77dda005edf1612309a153b5781649b689753f6e825ba25c64"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-10-29T10:09:42.98654288Z",
    "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=15",
            "PG_VERSION=15.13",
            "PG_SHA256=4f62e133d22ea08a0401b0840920e26698644d01a80c34341fb732dd0a90ca5d",
            "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": "amd64",
    "Os": "linux",
    "Size": 1302022453,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/fae36d50768aa127cfab366656240f766c467ebe0bd2b57e5fb3f67e1d214fb8/diff:/var/lib/docker/overlay2/95e58c75944d59f1b0586d6c285b3f01fcf1c39cd9750c833eb5be7100612b9b/diff:/var/lib/docker/overlay2/5e9bef98d10f84dd58c5abbfc35026fd80e39afbedd75a61440e19ef90848646/diff:/var/lib/docker/overlay2/e75ba863014f7a42dcb9acc5629949b274706a9469ab26e1c78528dddb1619d7/diff:/var/lib/docker/overlay2/50be961e390035c607c8b2d177fd270f43a595f23d63ba6781a1c6cce8bfad92/diff:/var/lib/docker/overlay2/99f6c84a7b3fdb815546674b757d3b61f457c5a3d34d80bf28f15fe9e25c1c1a/diff:/var/lib/docker/overlay2/9b2c9ac8fcd4fc720401acd318839c6901f1e2df6d1e3e8dce11060385c1c0c2/diff:/var/lib/docker/overlay2/7486a24786d3895c8ffe5683f7925532d5ec1872438adeaea05842276eb45f4c/diff:/var/lib/docker/overlay2/ed2f382cdb2ec31ddb6e311761841d49ab60fa448174aa0499db213a44b1868c/diff:/var/lib/docker/overlay2/ec2a08b21972dd2660a69d8a244be2abb54da2cd996cf8e8abcbd94a63a26843/diff:/var/lib/docker/overlay2/e738596f0b96d5dd14d7ec795a955312443287e1e61b16484c3530df619708c7/diff:/var/lib/docker/overlay2/1a19570467673dd59748f2e4e07d95bd9480e34211cfe97204794cd0c6004f6a/diff:/var/lib/docker/overlay2/02a93750fdfb3658b17b5454b6a2acc5f9562f7922528761ae5dc5b3b69b8231/diff:/var/lib/docker/overlay2/8ff660481f8633f3fb97ced323b98a4b23864dc4ad927257ecfdd15febb77ae7/diff:/var/lib/docker/overlay2/c3515e09f0c18ac6152a0045aa53ef2a04ddd94dbcb55f586a6af19a991ad1ae/diff:/var/lib/docker/overlay2/e84b63577186c391f738ee593eaf6783b431fe78c6ebdb45080a094aa12fcf0f/diff:/var/lib/docker/overlay2/20ec7432a9fc14bcb6ea5bd30b18d19872bcb3d6bfb5516685e9ecc1ca61a4d0/diff",
            "MergedDir": "/var/lib/docker/overlay2/ca885d387c65ed1dba2906661a9141144da09951bdef39c612b371212c1b01a5/merged",
            "UpperDir": "/var/lib/docker/overlay2/ca885d387c65ed1dba2906661a9141144da09951bdef39c612b371212c1b01a5/diff",
            "WorkDir": "/var/lib/docker/overlay2/ca885d387c65ed1dba2906661a9141144da09951bdef39c612b371212c1b01a5/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:994456c4fd7b2b87346a81961efb4ce945a39592d32e0762b38768bca7c7d085",
            "sha256:7284b16bf8dba73942029af5a64a205c4420da731fdc46485d943b65976b6aca",
            "sha256:fd7443bbdc710a76ac9577ee06bfa6a45872aae9f9756f55b3b45ced6e750e73",
            "sha256:edcf63c6d195e02affa662999cf8b9c59f529f3526b6faa7bbcdac9d3e501829",
            "sha256:de614b1990c9bbbf3bf466dd2338a25b2906279939ae3b259b7f27d6926fd0a0",
            "sha256:e9c694fee9c8ea90d7b5145934fccff5c525d2f2eea4c55a7cced42f0e9fde09",
            "sha256:d4ff59b75a16521dfee0b6d3a7a0a2febe2655ec41c42c5e1f95675441d76b05",
            "sha256:b3260246b009881a0f4bda582ea4c372e77c885d5382c96042b14ffd46d77a32",
            "sha256:3db03da67ef86cf6631a10392141300e0d3130b9480796d703f9d6aa1179e684",
            "sha256:ea5ee445f88bc5154691c84328b1dd587cbda81616a9eb1a64db3699543a5d94",
            "sha256:25bccdded7778a9c5c1bd149f4651822d36bc3e008ca97feabcefe276c378dc1",
            "sha256:2644f111c938b2ea2da25f6695fe0ee384faf4a7942684c0af0e861c71ca2a8a",
            "sha256:928e3f6bab18758bebeba9f12c351f878f2f245424034efde57df5649264d6d6",
            "sha256:26933d38a02c6e50aba6e6cc9a1e46fe9e21f0d8c79aa9e9eaa7d8ac3f05bfd7",
            "sha256:84427574d306a4fb0b3a6b8e4d5ee0f99c536da1c34b4f91e96ecbb94366d238",
            "sha256:e4fafb8055d21c9df779c6948a0803e60855f2afb673449ac5cb4d6c9f84fdbe",
            "sha256:101c4cc0d81b03ce78e09c157abf5db1b040edc0c9c54de98e8dca8ad93d0987",
            "sha256:d3e61b304a38f730ea78ce258501beb5840762d83aa075b2ef5463fe5615ff86"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-11-11T19:37:40.214769802+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

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

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

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

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

docker.io/timescale/timescaledb:latest-pg15

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