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

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

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
镜像ID sha256:259d7d70d66a7d35ec2a8ed884d9530b0be8b6e1f4785e4f9302f03f8559a6c4
镜像TAG 2.25.2-pg17
大小 953.83MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 9 次
贡献者
镜像创建 2026-03-03T09:39:52.137157473Z
同步时间 2026-03-10 15:23
开放端口
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
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17  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
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17  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#' 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 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17  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 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17  docker.io/timescale/timescaledb:2.25.2-pg17'

镜像构建历史


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

镜像信息

{
    "Id": "sha256:259d7d70d66a7d35ec2a8ed884d9530b0be8b6e1f4785e4f9302f03f8559a6c4",
    "RepoTags": [
        "timescale/timescaledb:2.25.2-pg17",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.25.2-pg17"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:ec9366355ee5a42282006095a8677a042f7d3b0567a31777d77a6e7c9d6e0fdf",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:bed7d3d5da2efbd99c32af6646ea1508ebc060932d05251ec14fe3d46afc1be9"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-03-03T09:39:52.137157473Z",
    "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": "amd64",
    "Os": "linux",
    "Size": 953831422,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/ac47ace4ed4c16ff23e6eb518a9357419f664ebfe979d3510beeef955db76288/diff:/var/lib/docker/overlay2/e69f4db2c7dcd9d853609542d8d20bf2c9195db8a3bf6c2804dcdd580ed936f2/diff:/var/lib/docker/overlay2/bda8f6fac764606cf8e251840c7ca698dbd701b37828d4ad7a8a2c1c62c2e347/diff:/var/lib/docker/overlay2/c967dd6f010ce23b8aef22580b0289d85c77a80a167b0d77b2329929ebdd7bd8/diff:/var/lib/docker/overlay2/37ad8347af46a7242aa39ab34997c693f34ac09ac69fdaeacdfba49a24d18a8f/diff:/var/lib/docker/overlay2/237d8c3f47553104ba14ecc5db08ea96ce32d155aa80817661472720c9521f46/diff:/var/lib/docker/overlay2/58c758cca9deec75caca9af79e7084609a5873e6d64db6b79734b5618035be38/diff:/var/lib/docker/overlay2/05fe32dc8ed1dbd9ff37db3ee5c3571672cdebb7cedd0bdbb711c5d537fe1a41/diff:/var/lib/docker/overlay2/509f93829dd731778a63602fe3e47b6b1fa1fd805bc949eec1d30ef5116cc34f/diff:/var/lib/docker/overlay2/f0ac128abe8e5b84bee7e9407c4a8164251bdf38801d2c8f44337f61eb9199e5/diff:/var/lib/docker/overlay2/a14dcb714592ecffa9b436694de426252aaf17a372e47d02d3432fb21c890c66/diff:/var/lib/docker/overlay2/b343f019887bccc24c17640da7cd5d58ab127808edaceb51993752c5ab017cba/diff:/var/lib/docker/overlay2/77f9e9bd6d32cc436e1deb8a7fadf1fe385cd8d598b76d71ddc71e2a6cc1e96b/diff:/var/lib/docker/overlay2/1dbd428e5b14409af9100e84d44f2bb759067a80e62c7fb6586e75ceb7407ec1/diff:/var/lib/docker/overlay2/cc0313ea8e492cd86c886948cb34584d9baa84f326e1822718167be8e458cb6e/diff:/var/lib/docker/overlay2/14e8c666d918e7603b93e09a5088443da9ef63e7ca5bccee76b97634e4e3ee5b/diff",
            "MergedDir": "/var/lib/docker/overlay2/89cb4d198ffb4c6d8d4ff8d271586add85d7687ddaa718b2b5bbec29d2e90983/merged",
            "UpperDir": "/var/lib/docker/overlay2/89cb4d198ffb4c6d8d4ff8d271586add85d7687ddaa718b2b5bbec29d2e90983/diff",
            "WorkDir": "/var/lib/docker/overlay2/89cb4d198ffb4c6d8d4ff8d271586add85d7687ddaa718b2b5bbec29d2e90983/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:922ec217407c0fd31cb18b46090bf62e439fb53ecd01f09406d62e25a906e09b",
            "sha256:a2e40c250d1900557c1ea0d7db075e41867bf27882cb32c01007bf3f517bb6eb",
            "sha256:caabe442a83bfe25da65f2daa6c3ced442c94b5313566a15aa07832d1d964f1b",
            "sha256:6b8b4c7772ef2ad562ba57a6cbf7ba0a3d2f43c78c2461139bfee747ac601faf",
            "sha256:9981bfb9b88ef9f21fb5592bea536e5b3f74312e570a7b81cd7b9b5b97147c12",
            "sha256:995330bf6b9eb47f7232c97bc756664e51cbbaf3826720e5dc7822b28795fdf3",
            "sha256:f227cc5b17e5116a1ee03abd3874e4ef91066e8e7aa21cff3419d9c8e87fce05",
            "sha256:a35177ee402651088853584836649220487a8095a7f0dd3c0a2fbbe53408de43",
            "sha256:4c91934532ec975bd9728ea0ec3ac82e484eafdcdb5f986c1cfc7f057feb851c",
            "sha256:53fa432230ceb5313802bea040b30d1c1f988a6369cc41d968a31443c548edc2",
            "sha256:5272105f354d839fb2efa827cdf7efaeb7570dfc507be78e1a023bec46c3713d",
            "sha256:6480394fb568988a2ae0a7849f64d2ce07f4999373022c62a5dd09c344b17992",
            "sha256:cd1eea943be9b1f25bb64ff63ba404a402b54a5d73cbc678ec2946a04c3efe6a",
            "sha256:c59559e85f8422afef0510d0b748eaef8ac20b81d6f8467f80ec70639381e5d7",
            "sha256:0cdf0a1b7dde5dd07360f52fba194e21fea4777742a990caaf1cd94d901a83d2",
            "sha256:bd58ed041598544eeac8a8c4e625cc006cc5d34f145308eb06758e54bc2cccbe",
            "sha256:9188260820c4753bd3e42175c1ef768f8f905769af6ddca99b11e26077282e21"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-03-10T15:23:03.766795197+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

docker.io/timescale/timescaledb-ha:pg17

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

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

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

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

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

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

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

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

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

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

docker.io/timescale/timescaledb:latest-pg15

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

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

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

docker.io/timescale/timescaledb:2.20.0-pg17

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

docker.io/timescale/timescaledb:2.25.0-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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