logo
docker.io/timescale/timescaledb:2.18.1-pg17
linux/amd64 docker.io qianyu 贡献

TimescaleDB 镜像

描述

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

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

20
浏览次数
472.86MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.18.1-pg17
源镜像
docker.io/timescale/timescaledb:2.18.1-pg17
镜像ID
sha256:8da9ad7cf4b918d6f6c94de5a22d2212d0381099109fdf18ac2f97f25dcd44ba
镜像 TAG
2.18.1-pg17
镜像大小
472.86MB
平台架构
linux/amd64
镜像源
docker.io
CMD
postgres
启动入口
docker-entrypoint.sh
工作目录
/
OS/平台
linux/amd64
镜像创建
2025-02-20T07:38:55.586159079Z
同步时间
2026-09-15 16:50
浏览量
20 次
贡献者
👑 avatar
qianyu ⭐ 资助者
荣誉赞助人
感谢您对本项目的慷慨资助
🔌 开放端口 1
5432/tcp
📁 目录挂载 1
 /var/lib/postgresql/data
⚙️ 环境变量 8
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
GOSU_VERSION=1.17 1
LANG=en_US.utf8 2
PG_MAJOR=17 3
PG_VERSION=17.3 4
PG_SHA256=13c18b35bf67a97bd639925fc581db7fd2aae4d3548eac39fcdb8da74ace2bea 5
DOCKER_PG_LLVM_DEPS=llvm19-dev clang19 6
PGDATA=/var/lib/postgresql/data 7
🏷️ 镜像标签 1
KeyValue
Timescale https://www.timescale.com maintainer
🛡️ 镜像安全扫描
alpine 3.21.3 Trivy 2026-09-15 16:50 查看完整报告
61
低危 LOW
234
中危 MEDIUM
306
高危 HIGH
12
严重 CRITICAL
受影响目标 (4)
docker.io/timescale/timescaledb:2.18.1-pg17 (alpine 3.21.3) alpine usr/local/bin/gosu gobinary usr/local/bin/timescaledb-parallel-copy gobinary usr/local/bin/timescaledb-tune gobinary

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#timescale/timescaledb:2.18.1-pg17#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.18.1-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.18.1-pg17 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.18.1-pg17  docker.io/timescale/timescaledb:2.18.1-pg17'

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-02-20 15:38:55  24.72MB 执行命令并创建新的镜像层
RUN |5 OSS_ONLY= PG_VERSION=17 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=19 TS_VERSION=2.18.1 /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-02-20 15:33:56  0.00B 定义构建参数
ARG TS_VERSION=2.18.1
                        
# 2025-02-20 15:33:56  46.39MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2025-02-20 15:33:55  42.12MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2025-02-20 15:33:55  15.90MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2025-02-20 15:33:19  5.62KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2025-02-20 15:33:19  7.13MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= PG_VERSION=17 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-02-20 15:31:24  0.00B 定义构建参数
ARG CLANG_VERSION=19
                        
# 2025-02-20 15:31:24  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2025-02-20 15:31:24  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.7.2
                        
# 2025-02-20 15:31:24  58.42MB 执行命令并创建新的镜像层
RUN |2 OSS_ONLY= PG_VERSION=17 /bin/sh -c set -ex;     apk update;     apk add --no-cache         postgresql${PG_VERSION}-plpython3; # buildkit
                        
# 2025-02-20 15:31:24  0.00B 定义构建参数
ARG PG_VERSION=17
                        
# 2025-02-20 15:31:24  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2025-02-20 15:31:24  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2025-02-14 03:01:08  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2025-02-14 03:01:08  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2025-02-14 03:01:08  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2025-02-14 03:01:08  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-02-14 03:01:08  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2025-02-14 03:01:08  14.96KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2025-02-14 03:01:08  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2025-02-14 03:01:08  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2025-02-14 03:01:08  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2025-02-14 03:01:08  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2025-02-14 03:01:08  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-02-14 03:01:08  267.65MB 执行命令并创建新的镜像层
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)"; 	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/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-02-14 03:01:08  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm19-dev 		clang19
                        
# 2025-02-14 03:01:08  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=13c18b35bf67a97bd639925fc581db7fd2aae4d3548eac39fcdb8da74ace2bea
                        
# 2025-02-14 03:01:08  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=17.3
                        
# 2025-02-14 03:01:08  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=17
                        
# 2025-02-14 03:01:08  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2025-02-14 03:01:08  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2025-02-14 03:01:08  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-02-14 03:01:08  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.17
                        
# 2025-02-14 03:01:08  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 03:01:08  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-02-14 03:01:08  7.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.3-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:8da9ad7cf4b918d6f6c94de5a22d2212d0381099109fdf18ac2f97f25dcd44ba",
    "RepoTags": [
        "timescale/timescaledb:2.18.1-pg17",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:2.18.1-pg17"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:cb0d97fd513b8e1a1ce48c214ccc312681a5d3fdb2866b10c2c6381083be8b03",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:d6b72bfc02f548a461fd374bbeee31240a137192fdc5e3212591ec32447c68ff"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-02-20T07:38:55.586159079Z",
    "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.3",
            "PG_SHA256=13c18b35bf67a97bd639925fc581db7fd2aae4d3548eac39fcdb8da74ace2bea",
            "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": 472858634,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/7387790f6b24b92dca4bc4ef3fcf631e8b23118575d89072c5a2dce4c74c6b0a/diff:/var/lib/docker/overlay2/2876f774be921be23187e0df8ff5beed4edd5b4d6403af5e24fa273f3765615d/diff:/var/lib/docker/overlay2/2a8bf8a3f6bdf592a64905c0e516e450530dabf64501f788454817a4be217f4e/diff:/var/lib/docker/overlay2/42b70978642add3e3198275f0285646ae63f9a1d561b05198a3bb30942c7b2e9/diff:/var/lib/docker/overlay2/6e2d496f7153833d73ba23b8f617281992d85cb9d4fde0acdc4d961e8877888d/diff:/var/lib/docker/overlay2/b0dcee9fc040c8ebbc72c0869f5e0695332ffd2558a9c39b4b64a06358f0bb71/diff:/var/lib/docker/overlay2/a8c1e14e5eca733a9c1b6bc7f7b928f0d3c2031278881c274d910c24355f549f/diff:/var/lib/docker/overlay2/83087de5c28b1df1d06a614e2308d073e8c25352124bc2a993c5eb9d3328bc5a/diff:/var/lib/docker/overlay2/2279661543d3e099a073efcfb78aea44ec68f1a160830976b65553ddc5270c3e/diff:/var/lib/docker/overlay2/9f2a54a815d4883e9f075db1e9df225aed7fd3dc18d340b1003b7c05d50fcdea/diff:/var/lib/docker/overlay2/b6a770b774052e6187b97306ee67291545415a887ded06d22d082499b7ab9cca/diff:/var/lib/docker/overlay2/d230b2562aa6f9435b2f19783992cc8c33fb3a6453f940f7e0e5583a2860602e/diff:/var/lib/docker/overlay2/fa0e20f6c5869527c0df5fb721e8b387d53b61aca85fe60ac071363e943a7dee/diff:/var/lib/docker/overlay2/7012614b35908031b028256be7172f29739782f5b9a07aa5cdbcc6f826bf77af/diff:/var/lib/docker/overlay2/40b7280e6d2a353ba203c0cbeb9249349ff9f96fe654064b28ca5e6e919cd6d8/diff:/var/lib/docker/overlay2/a6adc15ddef18925fa9406e29d497075e37f5d349625d087a913327b81c08dc6/diff",
            "MergedDir": "/var/lib/docker/overlay2/2249bd62b7449c2d627fe64fda74b3a164f5cdbda6a829c8d0e36393e7cdb3fe/merged",
            "UpperDir": "/var/lib/docker/overlay2/2249bd62b7449c2d627fe64fda74b3a164f5cdbda6a829c8d0e36393e7cdb3fe/diff",
            "WorkDir": "/var/lib/docker/overlay2/2249bd62b7449c2d627fe64fda74b3a164f5cdbda6a829c8d0e36393e7cdb3fe/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:08000c18d16dadf9553d747a58cf44023423a9ab010aab96cf263d2216b8b350",
            "sha256:9f9e4011d46a01e7ca44e7182aea463515c9eebe2d3fd908b74b3eda41dc2aaa",
            "sha256:ccf60c181f0d9968211f6533043562245852199db80cf4e82429c5c63caa8bac",
            "sha256:1f05e3d2037a9bcbcdaea00bd07b32be90d1d1d900373bf62435bfdb8959024c",
            "sha256:04092fef046fe262133577e250d32e0a2e2640c15c6e15554d92464df7f3c60d",
            "sha256:3d8817b9a99d09a8a297a93ebf0151853e44807beef518333f2398ee902339fb",
            "sha256:2d918026563ac7685251cc58b0fe085ec88dc7a52cfb9df1f1c6d8e0c2c57359",
            "sha256:f13e7941c44d8015cea229b0ca13bfb1ba1753c8f5f486eb7bc221efc6fae69e",
            "sha256:c970eabfec72c62f895c51d265387d357d82e8c7024be0420311d89374355185",
            "sha256:ea43fbef1712fd87a48d4fdddb882c6959b57107cbbc6f4de71837c8f9a098c0",
            "sha256:8e485b718a6835cf6cea8efdbe728f60fc58c5afee6f2e4bfa23987044d1587b",
            "sha256:3e65e945308018a6589bef31deffeac576165def10cd20a5411e107104743206",
            "sha256:427ed0cf8c3456e60734652f30998397b3474e791220da4e02261e204225edfe",
            "sha256:3f973b6689915b747cc48e4fee5f50a06c9d849765fb02f2f14ea6ba52ab645f",
            "sha256:0a7f7a97c398b47a695257d01b3c285cb141c4dddc985b715e44e5e5f8b4a543",
            "sha256:dfbe5a35905c8159931f09b0853684ceed5bf9e991535a569fc69732e66756bf",
            "sha256:5539d8e47496b75bc46cd33981b05186f9790b87c6c3ee50c659e79083e46a03"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-09-15T16:50:09.43771261+08:00"
    }
}

更多版本

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

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

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

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg16

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

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg17

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

docker.io/timescale/timescaledb-ha:pg17-amd64

linux/amd64 docker.io5.10GB2026-05-08 14:59
643

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

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

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

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

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

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

docker.io/timescale/timescaledb-ha:pg18

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

docker.io/timescale/timescaledb-ha:pg18.4-ts2.27.1

linux/amd64 docker.io4.42GB2026-05-29 16:31
323

docker.io/timescale/timescaledb-ha:pg18.4-ts2.29.0-all-oss

linux/amd64 docker.io3.80GB2026-08-03 16:19
119

docker.io/timescale/timescaledb-ha:pg18.4-ts2.29.2

linux/amd64 docker.io2.28GB2026-09-02 15:09
53

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

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

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

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

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

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

docker.io/timescale/timescaledb:2.16.1-pg16

linux/amd64 docker.io699.12MB2026-08-26 15:42
57

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.18.0-pg16

linux/amd64 docker.io1.83GB2026-06-24 17:18
188

docker.io/timescale/timescaledb:2.18.1-pg17

linux/amd64 docker.io472.86MB2026-09-15 16:50
19

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

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.19.3-pg14

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

docker.io/timescale/timescaledb:2.20.0-pg17

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

docker.io/timescale/timescaledb:2.22.1-pg17

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

docker.io/timescale/timescaledb:2.25.0-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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

docker.io/timescale/timescaledb:2.25.2-pg17

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

docker.io/timescale/timescaledb:2.29.0-pg17

linux/amd64 docker.io1.44GB2026-07-29 16:24
134

docker.io/timescale/timescaledb:2.29.2-pg18

linux/arm64 docker.io960.12MB2026-09-04 10:09
43

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg15

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

docker.io/timescale/timescaledb:latest-pg16

linux/amd64 docker.io1.83GB2025-02-06 19:41
2368
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×