docker.io/timescale/timescaledb:2.20.0-pg17 linux/amd64

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

TimescaleDB 镜像

描述

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

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

源镜像 docker.io/timescale/timescaledb:2.20.0-pg17
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.20.0-pg17
镜像ID sha256:1007c5839ca4beb84b3badeba1f604c08837ee55b2c988ef0e059f9e542a7197
镜像TAG 2.20.0-pg17
大小 622.20MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 15 次
贡献者
镜像创建 2025-05-15T12:09:06.156329618Z
同步时间 2026-01-15 14:33
更新时间 2026-01-15 22:01
开放端口
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=17 PG_VERSION=17.5 PG_SHA256=fcb7ab38e23b264d1902cb25e6adafb4525a6ebcbd015434aeef9eda80f528d8 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.20.0-pg17
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.20.0-pg17  docker.io/timescale/timescaledb:2.20.0-pg17

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-05-15 20:09:06  24.04MB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.21 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=19 TS_VERSION=2.20.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-05-15 20:03:41  0.00B 定义构建参数
ARG TS_VERSION=2.20.0
                        
# 2025-05-15 20:03:41  125.59MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2025-05-15 20:03:41  112.82MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2025-05-15 20:03:41  15.90MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2025-05-15 20:03:16  5.95KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2025-05-15 20:03:16  7.16MB 执行命令并创建新的镜像层
RUN |6 OSS_ONLY= PG_VERSION=17 PG_MAJOR_VERSION=17 ALPINE_VERSION=3.21 PGVECTOR_VERSION=v0.7.2 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;     make install;     apk del .vector-deps; # buildkit
                        
# 2025-05-15 20:01:45  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2025-05-15 20:01:45  0.00B 定义构建参数
ARG CLANG_VERSION=19
                        
# 2025-05-15 20:01:45  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2025-05-15 20:01:45  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.7.2
                        
# 2025-05-15 20:01:45  58.47MB 执行命令并创建新的镜像层
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 ] ; then         apk add --no-cache postgresql${PG_VERSION}-plpython3;     fi # buildkit
                        
# 2025-05-15 20:01:45  0.00B 定义构建参数
ARG ALPINE_VERSION=3.21
                        
# 2025-05-15 20:01:45  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=17
                        
# 2025-05-15 20:01:45  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2025-05-15 20:01:45  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2025-05-15 20:01:45  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  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-05-09 02:32:48  267.68MB 执行命令并创建新的镜像层
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-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=llvm19-dev 		clang19
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=fcb7ab38e23b264d1902cb25e6adafb4525a6ebcbd015434aeef9eda80f528d8
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=17.5
                        
# 2025-05-09 02:32:48  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=17
                        
# 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  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.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-02-14 11:28:36  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-02-14 11:28:36  7.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.3-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:1007c5839ca4beb84b3badeba1f604c08837ee55b2c988ef0e059f9e542a7197",
    "RepoTags": [
        "timescale/timescaledb:2.20.0-pg17",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.20.0-pg17"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:2d06a84effbb16ffc29b318cda0a516eb6a67b2c4e68c911efdef6678f79439c",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:ade640298ee985ed4e9ef9427d701f447e241240545efe6ac856fa05d61f5028"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-05-15T12:09:06.156329618Z",
    "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=17",
            "PG_VERSION=17.5",
            "PG_SHA256=fcb7ab38e23b264d1902cb25e6adafb4525a6ebcbd015434aeef9eda80f528d8",
            "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": "amd64",
    "Os": "linux",
    "Size": 622197013,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/428fc504ec25434f07fa2a7d9c5a1341ca9797bd27e6959642db26298197f15b/diff:/var/lib/docker/overlay2/d0d53b24fcc3ac95dca13f5f61a057d3d3295fbc38ab1a2d001eefbc8f64b8b4/diff:/var/lib/docker/overlay2/ed880587ad8758d31dd05a5bc578c681732d9b4d78f449bbae1ee87dbd078802/diff:/var/lib/docker/overlay2/6f10f87f436097218529f185db97991cc7137feac038f81cf296815dab5eb71d/diff:/var/lib/docker/overlay2/d829d54393c1c0ce42c5f954680aecf0d2eec47a7a721200df14cc83ba766b7f/diff:/var/lib/docker/overlay2/a51294d331cc9b6f314d2b39618babc9695245da3f15589932d359dbc2819b7b/diff:/var/lib/docker/overlay2/21e14d23b3959544c20fd6c2bfc13453099e65e816cd8e66c00b31d6a2127a22/diff:/var/lib/docker/overlay2/8a179bfbdf9b635264c5571c5cf7fc2f702f50d58161cd7ba5bc3cba0f2bd54a/diff:/var/lib/docker/overlay2/2d907ee19e65503000e2f939040b042d44e73d69be33a3d0db50b3c1f08aba89/diff:/var/lib/docker/overlay2/814f43f0fc7d2816b93036c0bacb91f4bf0e04e7bf870d8c90661e26ac929b9a/diff:/var/lib/docker/overlay2/38967fbf3bffbb72bb298ec73a8b134a12b4ab6f8f6cbadbc013bb12f8c8ee45/diff:/var/lib/docker/overlay2/51b6ce1ac8a2b6ecf496e33732d56ce2561e4fe14d4fea3dac81076897a5df47/diff:/var/lib/docker/overlay2/c1fc5de1fbf963880397e8632b4e8c9c77455f5071b049071997a3a381dc28e8/diff:/var/lib/docker/overlay2/198f9ae23cda5a29e1b0a7cbad05df278d30905dd64a9341e57810927194b595/diff:/var/lib/docker/overlay2/cd6de75ebcab7bd400f375d6f26e4a27c185e476d7acb7c9f4b496d235bb80cc/diff:/var/lib/docker/overlay2/4e8c80c1de56b91b667718f35bdead0b4c91a2fdafbfe97c3c57654b169634d9/diff",
            "MergedDir": "/var/lib/docker/overlay2/3eaf6d08fd343925986b9e580ca6dc5fc0c7fb0a8ca4a9ba0c651118f45dacaf/merged",
            "UpperDir": "/var/lib/docker/overlay2/3eaf6d08fd343925986b9e580ca6dc5fc0c7fb0a8ca4a9ba0c651118f45dacaf/diff",
            "WorkDir": "/var/lib/docker/overlay2/3eaf6d08fd343925986b9e580ca6dc5fc0c7fb0a8ca4a9ba0c651118f45dacaf/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:08000c18d16dadf9553d747a58cf44023423a9ab010aab96cf263d2216b8b350",
            "sha256:1963ecfe70511b8e58ccfd3817aebe8e61d10fa27f56182c887520e319f91fdb",
            "sha256:fca8bc269b6aea26e3d4b487cda1372efe1f69191130299c28d7dcf22ca87220",
            "sha256:b699bcd885c54161760443645cb9c7fd45369b4efc41f9fd436ce262b84927ce",
            "sha256:f4c9b7808ce7ccab844f9f4562b81af320858ff72f9f8fb63e56c66642256fdd",
            "sha256:b09340a34635ffe0bc62d7b2cae09696d6c531aa7d1b6cb2cefdf0342623e8fc",
            "sha256:39dcacc81ff2dae0caaf4840d215775f1f31869989134ea9ae462c2f681f92a2",
            "sha256:83d2a0b44de827fe685ca9c4845ab3f4bc5b225b467ead41eb9c0831791c2dc4",
            "sha256:1ad28655a359ee586fd43eac2d8c04e926d7b269a3d3214996b0bbd01aa9e402",
            "sha256:62636f8a1e08494667613e7165126d9d05993a689b33460302c8ff41b5798ca8",
            "sha256:e4bc993807b292d5eb5a1d86d049d2b3c86d8f27c4a8ea4f1c0ff93ff2109fb2",
            "sha256:0f9b08e0a8b23bf7076ee9309cd482061433600d62b38b474d1c58ffd184e5d8",
            "sha256:55cb183cff0f1c98fae31ad9e117405cc5c9c15abc9d475b52eb0588f8167ea5",
            "sha256:9c30b6df83d4ccc0283bf55f1e5c4ab727dd22016137a32e4a830368996bfb68",
            "sha256:a41a9b73e408a17e641687bd6d3dd719c43b1670c269afc96873e8c44053638e",
            "sha256:7d60734fbd95691c6dc07c5fefc18cf3026aed8a214c1ff8c960529929a5a432",
            "sha256:7e69014d21d96c985d17fafc8e1298b01b13a3b554c98b974d0575277a1d521d"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-15T14:32:48.621610763+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

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

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

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

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

docker.io/timescale/timescaledb:latest-pg15

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

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

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

docker.io/timescale/timescaledb:2.20.0-pg17

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