logo
docker.io/postgres:14
linux/arm64 docker.io 已验证 · Postgres 请确认架构匹配
PostgreSQL 是一个开源的关系数据库管理系统(RDBMS),提供了传输控制协议(TCP)上的 PostgreSQL 服务。该镜像支持多种操作系统和存储引擎,方便开发、测试和部署应用程序。
816
浏览次数
444.02MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64
源镜像
docker.io/postgres:14
镜像ID
sha256:0ab8e2d50b0a90e67a855e5fc3d250c5bd6c88c7786948cb0a61fc4e0c9d2643
镜像 TAG
14-linuxarm64
镜像大小
444.02MB
平台架构
linux/arm64
镜像源
docker.io
CMD
postgres
启动入口
docker-entrypoint.sh
工作目录
OS/平台
linux/arm64
镜像创建
2024-11-21T20:09:59Z
同步时间
2025-01-27 12:55
浏览量
816 次
贡献者
🔌 开放端口 1
5432/tcp
📁 目录挂载 1
 /var/lib/postgresql/data
⚙️ 环境变量 6
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/14/bin 0
GOSU_VERSION=1.17 1
LANG=en_US.utf8 2
PG_MAJOR=14 3
PG_VERSION=14.15-1.pgdg120+1 4
PGDATA=/var/lib/postgresql/data 5
🛡️ 镜像安全扫描
debian 12.9 Trivy 2025-01-27 12:55 查看完整报告
109
低危 LOW
37
中危 MEDIUM
41
高危 HIGH
4
严重 CRITICAL
受影响目标 (3)
docker.io/postgres:14 (debian 12.9) debian usr/local/bin/gosu gobinary /etc/ssl/private/ssl-cert-snakeoil.key

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64  docker.io/postgres:14

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64  docker.io/postgres:14

Shell快速替换命令

sed -i 's#postgres:14#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64  docker.io/postgres:14'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64  docker.io/postgres:14'

镜像构建历史


# 2024-11-22 04:09:59  0.00B 设置默认要执行的命令
CMD ["postgres"]
                        
# 2024-11-22 04:09:59  0.00B 声明容器运行时监听的端口
EXPOSE map[5432/tcp:{}]
                        
# 2024-11-22 04:09:59  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGINT
                        
# 2024-11-22 04:09:59  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2024-11-22 04:09:59  23.00B 执行命令并创建新的镜像层
RUN /bin/sh -c ln -sT docker-ensure-initdb.sh /usr/local/bin/docker-enforce-initdb.sh # buildkit
                        
# 2024-11-22 04:09:59  14.96KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh docker-ensure-initdb.sh /usr/local/bin/ # buildkit
                        
# 2024-11-22 04:09:59  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/postgresql/data]
                        
# 2024-11-22 04:09:59  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 1777 "$PGDATA" # buildkit
                        
# 2024-11-22 04:09:59  0.00B 设置环境变量 PGDATA
ENV PGDATA=/var/lib/postgresql/data
                        
# 2024-11-22 04:09:59  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c install --verbose --directory --owner postgres --group postgres --mode 3777 /var/run/postgresql # buildkit
                        
# 2024-11-22 04:09:59  58.04KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	dpkg-divert --add --rename --divert "/usr/share/postgresql/postgresql.conf.sample.dpkg" "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample"; 	cp -v /usr/share/postgresql/postgresql.conf.sample.dpkg /usr/share/postgresql/postgresql.conf.sample; 	ln -sv ../postgresql.conf.sample "/usr/share/postgresql/$PG_MAJOR/"; 	sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/share/postgresql/postgresql.conf.sample; 	grep -F "listen_addresses = '*'" /usr/share/postgresql/postgresql.conf.sample # buildkit
                        
# 2024-11-22 04:09:59  303.21MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 		export PYTHONDONTWRITEBYTECODE=1; 		dpkgArch="$(dpkg --print-architecture)"; 	aptRepo="[ signed-by=/usr/local/share/keyrings/postgres.gpg.asc ] http://apt.postgresql.org/pub/repos/apt/ bookworm-pgdg main $PG_MAJOR"; 	case "$dpkgArch" in 		amd64 | arm64 | ppc64el | s390x) 			echo "deb $aptRepo" > /etc/apt/sources.list.d/pgdg.list; 			apt-get update; 			;; 		*) 			echo "deb-src $aptRepo" > /etc/apt/sources.list.d/pgdg.list; 						savedAptMark="$(apt-mark showmanual)"; 						tempDir="$(mktemp -d)"; 			cd "$tempDir"; 						apt-get update; 			apt-get install -y --no-install-recommends dpkg-dev; 			echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list; 			_update_repo() { 				dpkg-scanpackages . > Packages; 				apt-get -o Acquire::GzipIndexes=false update; 			}; 			_update_repo; 						nproc="$(nproc)"; 			export DEB_BUILD_OPTIONS="nocheck parallel=$nproc"; 			apt-get build-dep -y postgresql-common pgdg-keyring; 			apt-get source --compile postgresql-common pgdg-keyring; 			_update_repo; 			apt-get build-dep -y "postgresql-$PG_MAJOR=$PG_VERSION"; 			apt-get source --compile "postgresql-$PG_MAJOR=$PG_VERSION"; 									apt-mark showmanual | xargs apt-mark auto > /dev/null; 			apt-mark manual $savedAptMark; 						ls -lAFh; 			_update_repo; 			grep '^Package: ' Packages; 			cd /; 			;; 	esac; 		apt-get install -y --no-install-recommends postgresql-common; 	sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; 	apt-get install -y --no-install-recommends 		"postgresql-$PG_MAJOR=$PG_VERSION" 	; 		rm -rf /var/lib/apt/lists/*; 		if [ -n "$tempDir" ]; then 		apt-get purge -y --auto-remove; 		rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; 	fi; 		find /usr -name '*.pyc' -type f -exec bash -c 'for pyc; do dpkg -S "$pyc" &> /dev/null || rm -vf "$pyc"; done' -- '{}' +; 		postgres --version # buildkit
                        
# 2024-11-22 04:09:59  0.00B 设置环境变量 PG_VERSION
ENV PG_VERSION=14.15-1.pgdg120+1
                        
# 2024-11-22 04:09:59  0.00B 设置环境变量 PATH
ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/14/bin
                        
# 2024-11-22 04:09:59  0.00B 设置环境变量 PG_MAJOR
ENV PG_MAJOR=14
                        
# 2024-11-22 04:09:59  3.98KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 	key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; 	export GNUPGHOME="$(mktemp -d)"; 	mkdir -p /usr/local/share/keyrings/; 	gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key"; 	gpg --batch --export --armor "$key" > /usr/local/share/keyrings/postgres.gpg.asc; 	gpgconf --kill all; 	rm -rf "$GNUPGHOME" # buildkit
                        
# 2024-11-22 04:09:59  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /docker-entrypoint-initdb.d # buildkit
                        
# 2024-11-22 04:09:59  3.08MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		libnss-wrapper 		xz-utils 		zstd 	; 	rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2024-11-22 04:09:59  0.00B 设置环境变量 LANG
ENV LANG=en_US.utf8
                        
# 2024-11-22 04:09:59  25.19MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	if [ -f /etc/dpkg/dpkg.cfg.d/docker ]; then 		grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; 		sed -ri '/\/usr\/share\/locale/d' /etc/dpkg/dpkg.cfg.d/docker; 		! grep -q '/usr/share/locale' /etc/dpkg/dpkg.cfg.d/docker; 	fi; 	apt-get update; apt-get install -y --no-install-recommends locales; rm -rf /var/lib/apt/lists/*; 	echo 'en_US.UTF-8 UTF-8' >> /etc/locale.gen; 	locale-gen; 	locale -a | grep 'en_US.utf8' # buildkit
                        
# 2024-11-22 04:09:59  4.20MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	savedAptMark="$(apt-mark showmanual)"; 	apt-get update; 	apt-get install -y --no-install-recommends ca-certificates wget; 	rm -rf /var/lib/apt/lists/*; 	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; 	apt-mark auto '.*' > /dev/null; 	[ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; 	apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; 	chmod +x /usr/local/bin/gosu; 	gosu --version; 	gosu nobody true # buildkit
                        
# 2024-11-22 04:09:59  0.00B 设置环境变量 GOSU_VERSION
ENV GOSU_VERSION=1.17
                        
# 2024-11-22 04:09:59  11.15MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -ex; 	apt-get update; 	apt-get install -y --no-install-recommends 		gnupg 		less 	; 	rm -rf /var/lib/apt/lists/* # buildkit
                        
# 2024-11-22 04:09:59  4.32KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	groupadd -r postgres --gid=999; 	useradd -r -g postgres --uid=999 --home-dir=/var/lib/postgresql --shell=/bin/bash postgres; 	install --verbose --directory --owner postgres --group postgres --mode 1777 /var/lib/postgresql # buildkit
                        
# 2024-11-22 04:09:59  97.11MB 
# debian.sh --arch 'arm64' out/ 'bookworm' '@1736726400'
                        
                    

镜像信息

{
    "Id": "sha256:0ab8e2d50b0a90e67a855e5fc3d250c5bd6c88c7786948cb0a61fc4e0c9d2643",
    "RepoTags": [
        "postgres:14",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:14-linuxarm64"
    ],
    "RepoDigests": [
        "postgres@sha256:7fe0928f6de61208d6b39730456085d74578046df4c684fa198f0fb065f4381e",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres@sha256:053f82e58613528ce04f71907a89df5972ec60be2c0aef226b856bd7925bed1f"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-11-21T20:09:59Z",
    "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:/usr/lib/postgresql/14/bin",
            "GOSU_VERSION=1.17",
            "LANG=en_US.utf8",
            "PG_MAJOR=14",
            "PG_VERSION=14.15-1.pgdg120+1",
            "PGDATA=/var/lib/postgresql/data"
        ],
        "Cmd": [
            "postgres"
        ],
        "Image": "",
        "Volumes": {
            "/var/lib/postgresql/data": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null,
        "StopSignal": "SIGINT"
    },
    "Architecture": "arm64",
    "Variant": "v8",
    "Os": "linux",
    "Size": 444019923,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/4ddd02cc41b671738edc2bed8c61e51264309d81d78fac2a89107857ace51ed1/diff:/var/lib/docker/overlay2/eca95a1b5002ca228b4231065073205ac693b66bcd318f8ce90af39318ba530c/diff:/var/lib/docker/overlay2/6c6165931ed6e3d685df820b39f2e034862ec9139141660d4fbb71a5e890259d/diff:/var/lib/docker/overlay2/b604d0e3632d5e9f5188b18642fa438a3f8ce0bae904e9bbefc1592116b519d1/diff:/var/lib/docker/overlay2/dec1772594314ce21f62d91a6e84561bd07ef9c00aa65d11dab561ac72f28788/diff:/var/lib/docker/overlay2/0caff493d5dd9aa13577e6ad2c260cf9c9752e54dedcdbe51a0f074939ed47bb/diff:/var/lib/docker/overlay2/90d84ef713c53b9df66023450d724c49a1384a880ca2b9575f50f6cb1b552d85/diff:/var/lib/docker/overlay2/d8a2ac5f53d68c32e3eec49ebf72815f50793b1c0e0bea47bef58b570058fd9f/diff:/var/lib/docker/overlay2/cb10beff91725326c0e146218c0623534e9a3556d96a1acb2b0a4bbffe11db59/diff:/var/lib/docker/overlay2/adc257771d30785606b0131adbe8a74e83b01675d3da7c12ed782244e04de9a6/diff:/var/lib/docker/overlay2/a72eb2fcaf77ed28cad0b25a7298b43e3811dda050be9929d77b16f2ab7b93a6/diff:/var/lib/docker/overlay2/7073707514d05b8c153ba01ec3ee3195b8ca62d4a40cdf04efb243a538025378/diff:/var/lib/docker/overlay2/b1cac45b5ec6289ba71455a83c439c0b44271cc7d5698bb66ff391a15e9aa6da/diff",
            "MergedDir": "/var/lib/docker/overlay2/1183c60ec14f13f76acce3a29de2d8987c7820ae8fee44f295833e1969bdc442/merged",
            "UpperDir": "/var/lib/docker/overlay2/1183c60ec14f13f76acce3a29de2d8987c7820ae8fee44f295833e1969bdc442/diff",
            "WorkDir": "/var/lib/docker/overlay2/1183c60ec14f13f76acce3a29de2d8987c7820ae8fee44f295833e1969bdc442/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:6f51610e98184af12bb1cfab40f1ae13928363f1ea9aa19138467f09167e9809",
            "sha256:60e8f700c6cc30ec02831f124aedae8ba218c5437e2d28e8118638c0d2df03f5",
            "sha256:671976435676c2800d2165bce39e1b78779217209f1e43ded6f229ab2fe88f18",
            "sha256:fbe99bc32aeabd04b97250318e3a29bd4cce4cecc24cf2d9fd93d0bf03214c92",
            "sha256:51ea44a8688cd8109eef66bc10c8cf415802c8bd426e3f7874d0af4349dd16bf",
            "sha256:9579c5347771f1de6ec620c8f2b13bc172340ea1b9eb86d5ec82f617c25f5b33",
            "sha256:dbe882a0d6918587f2e4b3808be00a061f831278d3385ef951a97c9091c97213",
            "sha256:52829d5de30fd9c8a69defa9bf9722a783827a0a82bcae53878b61ba8b50506a",
            "sha256:e0331aa5bc5a5f4682a2ec6a0c840def3009f4ea7f1403ad8592cc6755317044",
            "sha256:b6b0dc63fa5c7b71d42e35940d23782dd9d564c0c4eb2a132a664aa91ab6906c",
            "sha256:f8ac0ddf3164cd8e65b78204e1ffe10a4991b50c57a33d8b723301673ed9d174",
            "sha256:f539a80edbf6888b8cc099b4cd8b4c2ad924ee1900e87b73f205257b3e9763a4",
            "sha256:d79d27debcba63a8a5f2146fc5fa6df540b1a7fd5ecadab3e5cbcfb3bb1e8f21",
            "sha256:15956471032d4f48dcea9077a2f8dde85963f82aa9ff6ec22317fc02ea2590e7"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-01-27T12:55:20.31116131+08:00"
    }
}

更多版本

docker.io/postgres:10-alpine

linux/amd64 docker.io79.09MB2024-10-15 20:03
1205

docker.io/postgres:10.23-alpine3.16

linux/amd64 docker.io79.09MB2025-05-09 03:15
720

docker.io/postgres:10.5

linux/arm64 docker.io218.69MB2026-08-18 16:22
63

docker.io/postgres:11

linux/amd64 docker.io284.46MB2024-11-27 14:14
899

docker.io/postgres:11-alpine

linux/amd64 docker.io231.90MB2025-07-23 14:46
596

docker.io/postgres:11.22-alpine

linux/amd64 docker.io231.90MB2025-03-20 17:24
702

docker.io/postgres:11.4

linux/amd64 docker.io312.47MB2025-01-20 14:59
675

docker.io/postgres:11.9

linux/amd64 docker.io282.36MB2025-04-24 17:11
689

docker.io/postgres:12

linux/amd64 docker.io418.59MB2024-11-09 11:00
1232

docker.io/postgres:12-alpine

linux/amd64 docker.io266.44MB2025-07-07 14:56
748

docker.io/postgres:12.11

linux/amd64 docker.io372.64MB2025-04-18 17:35
553

docker.io/postgres:12.19-alpine3.20

linux/amd64 docker.io236.26MB2024-06-28 17:32
922

docker.io/postgres:12.19-bullseye

linux/amd64 docker.io386.93MB2024-06-16 13:12
1241

docker.io/postgres:12.2

linux/amd64 docker.io313.75MB2024-09-13 17:25
1023

docker.io/postgres:12.22-alpine3.21

linux/amd64 docker.io266.44MB2025-05-22 12:59
677

docker.io/postgres:12.3

linux/amd64 docker.io313.02MB2024-11-07 08:48
781

docker.io/postgres:12.3-alpine

linux/amd64 docker.io157.31MB2025-06-12 09:18
736

docker.io/postgres:12.3-alpine

linux/arm64 docker.io155.06MB2026-04-15 17:15
159

docker.io/postgres:12.4

linux/arm64 docker.io299.56MB2024-12-19 18:46
728

docker.io/postgres:13

linux/amd64 docker.io423.34MB2025-03-29 23:54
1240

docker.io/postgres:13-alpine

linux/amd64 docker.io267.85MB2025-01-03 14:51
1155

docker.io/postgres:13.14

linux/amd64 docker.io419.14MB2024-10-15 10:01
1293

docker.io/postgres:13.17

linux/amd64 docker.io419.45MB2025-03-10 16:32
750

docker.io/postgres:13.20

linux/amd64 docker.io423.33MB2025-03-11 17:26
832

docker.io/postgres:13.21

linux/amd64 docker.io423.40MB2025-07-04 17:17
640

docker.io/postgres:13.22

linux/amd64 docker.io439.21MB2025-08-16 18:18
689

docker.io/postgres:13.23

linux/arm64 docker.io461.15MB2026-05-07 10:29
177

docker.io/postgres:13.8

linux/arm64 docker.io354.23MB2024-07-24 23:02
1420

docker.io/postgres:14

linux/amd64 docker.io441.90MB2025-09-08 14:53
557

docker.io/postgres:14

linux/arm64 docker.io444.02MB2025-01-27 12:55
815

docker.io/postgres:14-alpine

linux/amd64 docker.io241.40MB2024-07-03 23:43
1828

docker.io/postgres:14-alpine

linux/arm64 docker.io268.16MB2026-05-19 15:15
144

docker.io/postgres:14.1

linux/amd64 docker.io374.04MB2026-01-14 15:44
370

docker.io/postgres:14.1

linux/arm64 docker.io353.56MB2026-01-14 15:41
224

docker.io/postgres:14.1-bullseye

linux/amd64 docker.io374.04MB2025-04-25 12:40
728

docker.io/postgres:14.11

linux/amd64 docker.io421.97MB2024-11-05 19:40
744

docker.io/postgres:14.12

linux/amd64 docker.io421.93MB2024-10-14 14:43
1083

docker.io/postgres:14.15

linux/amd64 docker.io422.30MB2025-02-04 11:33
688

docker.io/postgres:14.17-bookworm

linux/amd64 docker.io426.07MB2025-03-04 10:33
776

docker.io/postgres:14.18

linux/amd64 docker.io426.14MB2025-07-28 14:46
574

docker.io/postgres:14.19

linux/amd64 docker.io441.90MB2025-08-29 14:38
496

docker.io/postgres:14.19-bookworm

linux/amd64 docker.io425.20MB2025-12-02 16:28
310

docker.io/postgres:14.2

linux/amd64 docker.io376.10MB2026-01-14 15:47
375

docker.io/postgres:14.2

linux/arm64 docker.io355.37MB2026-01-14 15:50
240

docker.io/postgres:14.2-alpine

linux/amd64 docker.io210.71MB2024-08-15 15:18
1189

docker.io/postgres:14.23

linux/amd64 docker.io441.15MB2026-05-18 16:03
239

docker.io/postgres:14.23-bookworm

linux/amd64 docker.io425.44MB2026-06-03 16:33
193

docker.io/postgres:14.5

linux/amd64 docker.io376.37MB2025-09-02 16:18
662

docker.io/postgres:14.5

linux/arm64 docker.io357.18MB2025-04-08 20:02
657

docker.io/postgres:14.5-alpine

linux/amd64 docker.io216.44MB2026-03-04 15:33
346

docker.io/postgres:14.7

linux/amd64 docker.io376.54MB2025-10-22 11:31
374

docker.io/postgres:14.7-alpine3.17

linux/amd64 docker.io241.71MB2024-10-29 17:41
1111

docker.io/postgres:14.9

linux/amd64 docker.io408.06MB2025-08-29 14:42
494

docker.io/postgres:15

linux/amd64 docker.io429.58MB2025-08-04 10:18
1139

docker.io/postgres:15-alpine

linux/amd64 docker.io248.31MB2024-06-19 17:31
8040

docker.io/postgres:15-alpine

linux/arm64 docker.io250.04MB2024-07-08 15:04
4359

docker.io/postgres:15-alpine3.22

linux/amd64 docker.io273.16MB2026-02-12 10:14
773

docker.io/postgres:15-alpine3.22

linux/arm64 docker.io265.13MB2026-02-28 10:26
299

docker.io/postgres:15-bullseye

linux/amd64 docker.io418.13MB2025-02-26 16:42
793

docker.io/postgres:15.0-bullseye

linux/amd64 docker.io377.37MB2025-11-27 16:46
334

docker.io/postgres:15.12

linux/amd64 docker.io429.51MB2025-03-17 11:09
612

docker.io/postgres:15.13

linux/amd64 docker.io429.57MB2025-05-22 16:09
790

docker.io/postgres:15.14

linux/amd64 docker.io444.39MB2025-11-12 17:09
356

docker.io/postgres:15.14-alpine3.21

linux/amd64 docker.io272.57MB2025-10-13 14:15
320

docker.io/postgres:15.14-alpine3.22

linux/amd64 docker.io279.18MB2025-09-09 14:15
362

docker.io/postgres:15.17

linux/arm64 docker.io467.24MB2026-03-05 10:43
207

docker.io/postgres:15.18

linux/amd64 docker.io444.61MB2026-07-09 15:15
252

docker.io/postgres:15.19-alpine

linux/amd64 docker.io292.08MB2026-08-26 09:53
76

docker.io/postgres:15.19-trixie

linux/amd64 docker.io444.71MB2026-08-17 11:08
116

docker.io/postgres:15.19-trixie

linux/arm64 docker.io467.41MB2026-08-31 16:11
46

docker.io/postgres:15.2-alpine

linux/amd64 docker.io243.09MB2025-03-19 10:17
954

docker.io/postgres:15.2-alpine

linux/arm64 docker.io241.47MB2025-04-27 09:20
628

docker.io/postgres:15.3

linux/amd64 docker.io411.84MB2025-03-03 11:27
569

docker.io/postgres:15.3

linux/arm64 docker.io433.16MB2024-08-01 16:55
1622

docker.io/postgres:15.3-alpine

linux/amd64 docker.io236.75MB2025-03-03 11:32
689

docker.io/postgres:15.4

linux/amd64 docker.io410.61MB2024-07-18 12:35
2057

docker.io/postgres:15.4-alpine

linux/amd64 docker.io237.40MB2025-07-19 09:47
621

docker.io/postgres:15.6

linux/amd64 docker.io425.45MB2025-01-03 13:48
1098

docker.io/postgres:15.6

linux/arm64 docker.io447.23MB2025-03-13 15:13
777

docker.io/postgres:15.6-alpine

linux/amd64 docker.io240.41MB2026-07-09 15:22
154

docker.io/postgres:15.6-bookworm

linux/amd64 docker.io425.45MB2025-03-20 15:17
590

docker.io/postgres:15.6-bookworm

linux/arm64 docker.io447.23MB2025-03-19 14:48
536

docker.io/postgres:15.7-alpine

linux/amd64 docker.io242.81MB2026-09-14 15:52
29

docker.io/postgres:15.7-alpine

linux/arm64 docker.io250.04MB2026-04-03 14:42
281

docker.io/postgres:16

linux/amd64 docker.io431.58MB2024-07-26 18:25
3145

docker.io/postgres:16

linux/arm64 docker.io456.79MB2025-05-27 15:50
1434

docker.io/postgres:16-alpine

linux/amd64 docker.io250.73MB2024-12-03 21:04
3423

docker.io/postgres:16-alpine

linux/arm64 docker.io271.54MB2026-02-12 19:07
552

docker.io/postgres:16.1

linux/amd64 docker.io425.16MB2025-04-19 14:27
781

docker.io/postgres:16.10

linux/amd64 docker.io451.17MB2025-09-23 10:23
442

docker.io/postgres:16.10-alpine3.21

linux/amd64 docker.io275.40MB2025-08-15 11:48
624

docker.io/postgres:16.10-bookworm

linux/amd64 docker.io435.03MB2025-12-26 10:30
456

docker.io/postgres:16.11

linux/amd64 docker.io450.80MB2026-01-08 15:00
497

docker.io/postgres:16.13

linux/arm64 docker.io473.57MB2026-04-03 17:23
287

docker.io/postgres:16.13-alpine3.22

linux/amd64 docker.io275.45MB2026-05-07 09:10
233

docker.io/postgres:16.13-alpine3.22

linux/arm64 docker.io267.08MB2026-04-21 17:20
169

docker.io/postgres:16.13-alpine3.23

linux/amd64 docker.io276.06MB2026-04-20 18:08
342

docker.io/postgres:16.14-alpine

linux/amd64 docker.io276.20MB2026-05-18 11:45
335

docker.io/postgres:16.14-alpine3.24

linux/amd64 docker.io294.21MB2026-07-31 18:39
137

docker.io/postgres:16.15-alpine

linux/amd64 docker.io294.28MB2026-08-19 10:44
90
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×