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

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

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

TimescaleDB 镜像

描述

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

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

源镜像 docker.io/timescale/timescaledb:latest-pg16
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg16
镜像ID sha256:2c85c0749b3fc257c8856043c83e4369c1770ea4e1d787cd3ba082dbde96adbc
镜像TAG latest-pg16
大小 1.83GB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 50 次
贡献者
镜像创建 2025-01-23T10:27:41.234048045Z
同步时间 2025-02-06 19:41
更新时间 2025-02-21 17:03
开放端口
5432/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin GOSU_VERSION=1.17 LANG=en_US.utf8 PG_MAJOR=16 PG_VERSION=16.6 PG_SHA256=23369cdaccd45270ac5dcc30fa9da205d5be33fa505e1f17a0418d2caeca477b DOCKER_PG_LLVM_DEPS=llvm19-dev clang19 PGDATA=/var/lib/postgresql/data
镜像标签
Timescale https://www.timescale.com: maintainer
镜像安全扫描 查看Trivy扫描报告

系统OS: alpine 3.21.2 扫描引擎: Trivy 扫描时间: 2025-02-06 19:42

低危漏洞:1 中危漏洞:26 高危漏洞:33 严重漏洞:3

Docker拉取命令 无权限下载?点我修复

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-01-23 18:27:41  23.87MB 执行命令并创建新的镜像层
RUN |8 OSS_ONLY= PG_VERSION=16 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=19 PGAI_VERSION=extension-0.7.0 PG_MAJOR_VERSION=16 TARGETARCH=amd64 TS_VERSION=2.18.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-01-23 18:24:34  0.00B 定义构建参数
ARG TS_VERSION=2.18.0
                        
# 2025-01-23 18:24:34  166.06MB 复制新文件或目录到容器中
COPY /usr/local/share/postgresql/extension/timescaledb--*.sql /usr/local/share/postgresql/extension/ # buildkit
                        
# 2025-01-23 18:24:33  132.70MB 复制新文件或目录到容器中
COPY /usr/local/lib/postgresql/timescaledb-*.so /usr/local/lib/postgresql/ # buildkit
                        
# 2025-01-23 18:24:32  15.90MB 复制新文件或目录到容器中
COPY /go/bin/* /usr/local/bin/ # buildkit
                        
# 2025-01-23 18:24:32  6.05KB 复制新文件或目录到容器中
COPY docker-entrypoint-initdb.d/* /docker-entrypoint-initdb.d/ # buildkit
                        
# 2025-01-23 18:24:31  1.15GB 执行命令并创建新的镜像层
RUN |7 OSS_ONLY= PG_VERSION=16 PGVECTOR_VERSION=v0.7.2 CLANG_VERSION=19 PGAI_VERSION=extension-0.7.0 PG_MAJOR_VERSION=16 TARGETARCH=amd64 /bin/sh -c set -ex;     if [ "$PG_MAJOR_VERSION" -ge 16 ] && [ "$TARGETARCH" != "arm" ]; then         apk update;         apk add libarrow libparquet;         apk add --no-cache --virtual .pgai-deps             git             build-base             cargo             cmake             python3-dev             py3-pip             apache-arrow-dev;         if [ "$(pip --version | awk '{print $2; exit}')" \< "23.0.1" ]; then             python3 -m pip install --upgrade pip==23.0.1;         fi;         git clone --branch ${PGAI_VERSION} https://github.com/timescale/pgai.git /build/pgai;         cd /build/pgai;         echo "pyarrow==$(pkg-config --modversion arrow)" > constraints.txt;         export PIP_CONSTRAINT=$(pwd)/constraints.txt;         if [ "$TARGETARCH" == "386" ]; then             echo "pandas==2.1.4" >> constraints.txt;             export PIP_CONSTRAINT=$(pwd)/constraints.txt;             apk add --no-cache --virtual .pgai-deps-386                 jpeg-dev                 zlib-dev;         fi;         PG_BIN="/usr/local/bin" PG_MAJOR=${PG_MAJOR_VERSION} ./projects/extension/build.py install;         if [ "$TARGETARCH" == "386" ]; then apk del .pgai-deps-386; fi;         apk del .pgai-deps;     fi # buildkit
                        
# 2025-01-23 17:58:18  0.00B 定义构建参数
ARG TARGETARCH=amd64
                        
# 2025-01-23 17:58:18  0.00B 定义构建参数
ARG PG_MAJOR_VERSION=16
                        
# 2025-01-23 17:58:18  0.00B 定义构建参数
ARG PGAI_VERSION=extension-0.7.0
                        
# 2025-01-23 17:58:18  7.16MB 执行命令并创建新的镜像层
RUN |4 OSS_ONLY= PG_VERSION=16 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-01-23 17:56:27  0.00B 定义构建参数
ARG CLANG_VERSION=19
                        
# 2025-01-23 17:56:27  0.00B 定义构建参数
ARG PG_VERSION=16
                        
# 2025-01-23 17:56:27  0.00B 定义构建参数
ARG PGVECTOR_VERSION=v0.7.2
                        
# 2025-01-23 17:56:27  57.44MB 执行命令并创建新的镜像层
RUN |2 OSS_ONLY= PG_VERSION=16 /bin/sh -c set -ex;     apk update;     apk add --no-cache         postgresql${PG_VERSION}-plpython3; # buildkit
                        
# 2025-01-23 17:56:27  0.00B 定义构建参数
ARG PG_VERSION=16
                        
# 2025-01-23 17:56:27  0.00B 添加元数据标签
LABEL maintainer=Timescale https://www.timescale.com
                        
# 2025-01-23 17:56:27  0.00B 定义构建参数
ARG OSS_ONLY
                        
# 2024-12-06 08:14:30  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2024-12-06 08:14:30  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2024-12-06 08:14:30  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2024-12-06 08:14:30  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2024-12-06 08:14:30  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2024-12-06 08:14:30  14.96KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2024-12-06 08:14:30  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2024-12-06 08:14:30  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2024-12-06 08:14:30  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2024-12-06 08:14:30  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2024-12-06 08:14:30  59.25KB 执行命令并创建新的镜像层
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
                        
# 2024-12-06 08:14:30  264.33MB 执行命令并创建新的镜像层
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-thread-safety 		--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
                        
# 2024-12-06 08:14:30  0.00B 设置环境变量 DOCKER_PG_LLVM_DEPS
ENV DOCKER_PG_LLVM_DEPS=llvm19-dev 		clang19
                        
# 2024-12-06 08:14:30  0.00B 设置环境变量 PG_SHA256
ENV PG_SHA256=23369cdaccd45270ac5dcc30fa9da205d5be33fa505e1f17a0418d2caeca477b
                        
# 2024-12-06 08:14:30  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=16.6
                        
# 2024-12-06 08:14:30  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=16
                        
# 2024-12-06 08:14:30  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2024-12-06 08:14:30  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2024-12-06 08:14:30  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
                        
# 2024-12-06 08:14:30  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
                        
# 2024-12-06 08:14:30  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.17
                        
# 2024-12-06 08:14:30  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
                        
# 2024-12-06 08:14:30  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2024-12-06 08:14:30  7.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.2-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:2c85c0749b3fc257c8856043c83e4369c1770ea4e1d787cd3ba082dbde96adbc",
    "RepoTags": [
        "timescale/timescaledb:latest-pg16",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb:latest-pg16"
    ],
    "RepoDigests": [
        "timescale/timescaledb@sha256:b347ff2a35bd94d82dc1c297223be228386507b680fc8711aee7be9650407bed",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/timescale/timescaledb@sha256:d95823e83c3e62dba31701f240608a148eae755817c8e5e9c3b117f290a6da6c"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-01-23T10:27:41.234048045Z",
    "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=16",
            "PG_VERSION=16.6",
            "PG_SHA256=23369cdaccd45270ac5dcc30fa9da205d5be33fa505e1f17a0418d2caeca477b",
            "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": 1830226822,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/3b24968c284088cd18aa7358784d62ece68b5705d7940330d4005bb1bbd54a6e/diff:/var/lib/docker/overlay2/e0f21672a9220e0adf957717c29c41deed11ec6dad394cbfe20948ac87c919c9/diff:/var/lib/docker/overlay2/6af98a0424abf5eae7cdc020fda8c97d9a844d8d5616f97b68212b902bf40531/diff:/var/lib/docker/overlay2/ee1332160b93f5788691a35ee486d8bc20041c7e92763a604d6db99cfdbbcb2b/diff:/var/lib/docker/overlay2/d9e65678044b36102a6ede9be3e18d732332d448414a5b9d6601cc86818f3f3c/diff:/var/lib/docker/overlay2/143f4be833d1fd328cb8eef77a52b4e62ca956a990a0fe2df4017c0521afa787/diff:/var/lib/docker/overlay2/f79a9be6b93b4ae4dbc0775248e61327635fb8f8801c3a7f323a6772dfeb5c27/diff:/var/lib/docker/overlay2/39d3ca5ec77cdac3225e1afd642595de05430c863788b76ef97750e59e208594/diff:/var/lib/docker/overlay2/f872bc9f8c99f3f78aca6e4de729f3bf60d440542ef77106d207da4ec18024fb/diff:/var/lib/docker/overlay2/3a904d37175f95cb8cf53c03d4bca957452cb404f9786062d07a84d074cd7074/diff:/var/lib/docker/overlay2/a5ef9a41883a956588aa8dab6df2d272fdcb7011f13be49b620cecb42a6ed1cd/diff:/var/lib/docker/overlay2/70397a9f45f09fb5ee71999082aa574dceea0a57c7d0ca58bf4b489605d1465f/diff:/var/lib/docker/overlay2/ab1d854c091fa25e014490315d78a21b8104cc98bf101976059258ddafe3c32c/diff:/var/lib/docker/overlay2/66e62b03ea933b4187ac9fad331921393dc76686d99315b5f30e2addb560b885/diff:/var/lib/docker/overlay2/37f9a3907551a44499e719c99c799d8e30f15cd73f2f82252938f8f8148ae152/diff:/var/lib/docker/overlay2/3b32f5f539717b4c86abfcd2fa0dc17efd7e9ba6849d3dbb2849339b3ebb7322/diff:/var/lib/docker/overlay2/63ce86fc827df74205d54e36f0663518d543e164f5a01a43e6d577486062ae0c/diff:/var/lib/docker/overlay2/d20d579acee6b92a841ecc27f4d08dddd63e6a78b9aab3e87eac393e91dd0045/diff",
            "MergedDir": "/var/lib/docker/overlay2/fad0331fad7bd2516f7205677fa1a9562c332d1ce23d471effc4f0d898d0d5b3/merged",
            "UpperDir": "/var/lib/docker/overlay2/fad0331fad7bd2516f7205677fa1a9562c332d1ce23d471effc4f0d898d0d5b3/diff",
            "WorkDir": "/var/lib/docker/overlay2/fad0331fad7bd2516f7205677fa1a9562c332d1ce23d471effc4f0d898d0d5b3/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:a0904247e36a7726c03c71ee48f3e64462021c88dafeb13f37fdaf613b27f11c",
            "sha256:de4b48fe88ab2f1b7d7a525c01ac4d04637dba47af314bc244eaf8353ceb7728",
            "sha256:97436f4e45fffed31a06ec8ae066c84c36fce05d6f3a12b217126cf0f86b14a8",
            "sha256:863e32f79915f1ccd6625bfaa601918b60d5437878386324856e73e4ceff841d",
            "sha256:03cd19bfb971fffde84ef3ce1be954a595ded24a775a9950ba091632b262086a",
            "sha256:4e3bce3df52b74b7ae41329d1dd3942b26e78c4c87537ca4a436f85a795d1ce9",
            "sha256:e227a405c9207702a2d35197aca89205f01e785b07cf841e62aa9c9a58aadf66",
            "sha256:d25c729b34dcfd582c91b590f529933e68a3ddf0f77122964ef8f60d663daf79",
            "sha256:f3ef1341a2f42962007bef942aa27ba4fe285745becc88a006fbad3c5e5985ec",
            "sha256:f3c5019955a33f7ce5ffb374e0926fdbdea5809488bcd9a586a5b4da637eee51",
            "sha256:a2f035cb7df2ad35e21abf442f4af4e3a26ad37b1851e8817c69deea275a3f89",
            "sha256:363c367b98b622ee2ea3220713bd1203243a2ebf3c0eefb3b7827f032ac6f76d",
            "sha256:4af2538340d5d5205412582bcbe75bc9a32c62667c7ed0d5c2bab13610088b14",
            "sha256:28b39c9255a0e75fad1f87aefc293910119d5fce12945eeea4e366d0800be1be",
            "sha256:fcced7571a74a956898ef0c23bbaef80133ecebd13072a452030abd3cdaa4c11",
            "sha256:8684519ec4afa57a16e617dabae3d4f09b7f3ecfd054fae78d3d1d1efbf41d1f",
            "sha256:a8478fa92617cf4240d700249a4275e07589af63d5c6c27b33d1cb45ab10ec70",
            "sha256:a75068cdca278d165c71551f10b6cc485436463f57cff119d43669c795aa4d03",
            "sha256:dbf96128eb7886e4e3fa837948a9382b7ad5b058ffd9486c61bd538d9b778c8c"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-02-06T19:40:05.112175615+08:00"
    }
}

更多版本

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

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

docker.io/timescale/timescaledb:2.17.0-pg16

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

docker.io/timescale/timescaledb:2.3.1-pg11

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

docker.io/timescale/timescaledb:latest-pg12

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

docker.io/timescale/timescaledb:latest-pg11

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

docker.io/timescale/timescaledb:1.3.0-pg11

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

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

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

docker.io/timescale/timescaledb:latest-pg14

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

docker.io/timescale/timescaledb:latest-pg16

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

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

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

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

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