docker.io/postgres:11.9 linux/amd64

docker.io/postgres:11.9 - 国内下载镜像源 浏览次数:8 安全受验证的发布者-Postgres
PostgreSQL 是一个开源的关系数据库管理系统(RDBMS),提供了传输控制协议(TCP)上的 PostgreSQL 服务。该镜像支持多种操作系统和存储引擎,方便开发、测试和部署应用程序。
源镜像 docker.io/postgres:11.9
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:11.9
镜像ID sha256:e07f0c129d9a26cee91d34a544ec2d00e8b3f4eb45a70cdaef2e466e51eefe59
镜像TAG 11.9
大小 282.36MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD postgres
启动入口 docker-entrypoint.sh
工作目录
OS/平台 linux/amd64
浏览量 8 次
贡献者
镜像创建 2020-10-13T12:34:57.071347904Z
同步时间 2025-04-24 17:11
更新时间 2025-04-24 23:18
开放端口
5432/tcp
目录挂载
/var/lib/postgresql/data
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/11/bin GOSU_VERSION=1.12 LANG=en_US.utf8 PG_MAJOR=11 PG_VERSION=11.9-1.pgdg90+1 PGDATA=/var/lib/postgresql/data

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2020-10-13 20:34:57  0.00B 
/bin/sh -c #(nop)  CMD ["postgres"]
                        
# 2020-10-13 20:34:56  0.00B 
/bin/sh -c #(nop)  EXPOSE 5432
                        
# 2020-10-13 20:34:56  0.00B 
/bin/sh -c #(nop)  STOPSIGNAL SIGINT
                        
# 2020-10-13 20:34:56  0.00B 
/bin/sh -c #(nop)  ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2020-10-13 20:34:55  34.00B 
/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
                        
# 2020-10-13 20:34:54  10.93KB 
/bin/sh -c #(nop) COPY file:319b7406843f62370047c33da3dd702120d7eec161b31772aa6de0f02a6b3a94 in /usr/local/bin/ 
                        
# 2020-10-13 20:34:53  0.00B 
/bin/sh -c #(nop)  VOLUME [/var/lib/postgresql/data]
                        
# 2020-10-13 20:34:53  0.00B 
/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
                        
# 2020-10-13 20:34:51  0.00B 
/bin/sh -c #(nop)  ENV PGDATA=/var/lib/postgresql/data
                        
# 2020-10-13 20:34:51  0.00B 
/bin/sh -c #(nop)  ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/11/bin
                        
# 2020-10-13 20:34:51  0.00B 
/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
                        
# 2020-10-13 20:34:49  48.31KB 
/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
                        
# 2020-10-13 20:34:48  194.36MB 
/bin/sh -c set -ex; 		export PYTHONDONTWRITEBYTECODE=1; 		dpkgArch="$(dpkg --print-architecture)"; 	case "$dpkgArch" in 		amd64 | i386 | ppc64el) 			echo "deb http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main $PG_MAJOR" > /etc/apt/sources.list.d/pgdg.list; 			apt-get update; 			;; 		*) 			echo "deb-src http://apt.postgresql.org/pub/repos/apt/ stretch-pgdg main $PG_MAJOR" > /etc/apt/sources.list.d/pgdg.list; 						case "$PG_MAJOR" in 				9.* | 10 ) ;; 				*) 					echo 'deb http://deb.debian.org/debian stretch-backports main' >> /etc/apt/sources.list.d/pgdg.list; 					;; 			esac; 						tempDir="$(mktemp -d)"; 			cd "$tempDir"; 						savedAptMark="$(apt-mark showmanual)"; 						apt-get update; 			apt-get build-dep -y 				postgresql-common pgdg-keyring 				"postgresql-$PG_MAJOR=$PG_VERSION" 			; 			DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" 				apt-get source --compile 					postgresql-common pgdg-keyring 					"postgresql-$PG_MAJOR=$PG_VERSION" 			; 						apt-mark showmanual | xargs apt-mark auto > /dev/null; 			apt-mark manual $savedAptMark; 						ls -lAFh; 			dpkg-scanpackages . > Packages; 			grep '^Package: ' Packages; 			echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list; 			apt-get -o Acquire::GzipIndexes=false update; 			;; 	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' -- '{}' +
                        
# 2020-10-13 20:34:15  0.00B 
/bin/sh -c #(nop)  ENV PG_VERSION=11.9-1.pgdg90+1
                        
# 2020-10-13 20:34:15  0.00B 
/bin/sh -c #(nop)  ENV PG_MAJOR=11
                        
# 2020-10-13 20:34:14  5.20KB 
/bin/sh -c set -ex; 	key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; 	export GNUPGHOME="$(mktemp -d)"; 	gpg --batch --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; 	gpg --batch --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; 	command -v gpgconf > /dev/null && gpgconf --kill all; 	rm -rf "$GNUPGHOME"; 	apt-key list
                        
# 2020-10-13 20:34:11  0.00B 
/bin/sh -c mkdir /docker-entrypoint-initdb.d
                        
# 2020-10-13 20:34:09  1.36MB 
/bin/sh -c set -eux; 	apt-get update; 	apt-get install -y --no-install-recommends 		libnss-wrapper 		xz-utils 	; 	rm -rf /var/lib/apt/lists/*
                        
# 2020-10-13 20:34:02  0.00B 
/bin/sh -c #(nop)  ENV LANG=en_US.utf8
                        
# 2020-10-13 20:34:01  16.53MB 
/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/*; 	localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8
                        
# 2020-10-13 20:33:50  4.14MB 
/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
                        
# 2020-10-13 20:33:35  0.00B 
/bin/sh -c #(nop)  ENV GOSU_VERSION=1.12
                        
# 2020-10-13 20:33:34  328.58KB 
/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; 	mkdir -p /var/lib/postgresql; 	chown -R postgres:postgres /var/lib/postgresql
                        
# 2020-10-13 20:33:33  10.24MB 
/bin/sh -c set -ex; 	if ! command -v gpg > /dev/null; then 		apt-get update; 		apt-get install -y --no-install-recommends 			gnupg 			dirmngr 		; 		rm -rf /var/lib/apt/lists/*; 	fi
                        
# 2020-10-13 09:44:45  0.00B 
/bin/sh -c #(nop)  CMD ["bash"]
                        
# 2020-10-13 09:44:45  55.32MB 
/bin/sh -c #(nop) ADD file:4453535d387fcb17ead2026c72c05444e7558aa4736e3c0cdfb87cf20eaa5a9f in / 
                        
                    

镜像信息

{
    "Id": "sha256:e07f0c129d9a26cee91d34a544ec2d00e8b3f4eb45a70cdaef2e466e51eefe59",
    "RepoTags": [
        "postgres:11.9",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres:11.9"
    ],
    "RepoDigests": [
        "postgres@sha256:d441bf645a1dcd2b4429d916c276d4c01299ee16b7a0e0f3d0baa846cbd4ee07",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/postgres@sha256:72be9fbaa43eabe2200913cebddf3a8532f8eead1935a1f8707f65ad0c95771e"
    ],
    "Parent": "",
    "Comment": "",
    "Created": "2020-10-13T12:34:57.071347904Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "18.09.7",
    "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/11/bin",
            "GOSU_VERSION=1.12",
            "LANG=en_US.utf8",
            "PG_MAJOR=11",
            "PG_VERSION=11.9-1.pgdg90+1",
            "PGDATA=/var/lib/postgresql/data"
        ],
        "Cmd": [
            "postgres"
        ],
        "ArgsEscaped": true,
        "Image": "sha256:8090e15d156e0f79e1b1ca8fab244615505dc0d2a540d567381e6e8b9dd05b1f",
        "Volumes": {
            "/var/lib/postgresql/data": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null,
        "StopSignal": "SIGINT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 282356006,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/21e0751ffc25a559efadd21e530fad1fc43c834f4ef67efb8fc8989ad23c778b/diff:/var/lib/docker/overlay2/b70a539d7d6f432fc466de6e139a0fe603ae80151edbde62254a8da3a4f0cbdf/diff:/var/lib/docker/overlay2/583b39afd69d8372e59c66bb068aa5afdf8740a6162c3312ccb8bb5d7f96292a/diff:/var/lib/docker/overlay2/eee0098af866e0d6194399b1181e48b24b0414b373711da0cb7c5f1a3d19ec80/diff:/var/lib/docker/overlay2/1b24e7279532b70ef72311cc580afafda6381891bd6697b6872c2dbea9d0f0e3/diff:/var/lib/docker/overlay2/82dba0ca0c82ab7ac0ef746dc525942daea17e63a9102e313ed5d0c800ce0021/diff:/var/lib/docker/overlay2/759d225a931fd78653c8bfe87e11af35413c14f9c577326ea33e09942c2ae3cd/diff:/var/lib/docker/overlay2/f444521c19f7e78aaa9ce405664690d54d331f9839c567d0c84020b9a2c05b5a/diff:/var/lib/docker/overlay2/3d0d999f1a3093454e4bdc89f2dba25d3d62220bbdfa69b86a14c4821381f8b1/diff:/var/lib/docker/overlay2/0abb4efbae2ee3158aad867ff6f1c76a0c448b7ed9620611c80116efb6ea28c6/diff:/var/lib/docker/overlay2/04353dc8c65b84380b77e550ec55e386b480f3804c07ff3c96096780a0f72d01/diff:/var/lib/docker/overlay2/3683376673c0426be0bafea76efaa05a56ca1928eb11007a6ac7613d903e5184/diff:/var/lib/docker/overlay2/a1e67bb372fdcb508300cc1e002a9165a208c4155124cb5dcd42f4ddb001b04d/diff",
            "MergedDir": "/var/lib/docker/overlay2/fb44b08961d1ae335bbab5c796f927a4949462c987e102442e4798035a47e4c1/merged",
            "UpperDir": "/var/lib/docker/overlay2/fb44b08961d1ae335bbab5c796f927a4949462c987e102442e4798035a47e4c1/diff",
            "WorkDir": "/var/lib/docker/overlay2/fb44b08961d1ae335bbab5c796f927a4949462c987e102442e4798035a47e4c1/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:b0300c32a4891c4fd60c3c61ddb999441e881adbafb14e9f010b1f4b5f32df87",
            "sha256:0d3397fcc2aab02635ae6079e593ce6dece0a7d215d49fdd973199ad4fdf8c3e",
            "sha256:448d59df0d3b63ab55f5921ba02c1fe31a618812bc2fe0e59abbddfab3fa5e8f",
            "sha256:acc24e9647d897b35e8365b503b016056878466a582bf88700173291a9c1ec70",
            "sha256:1edd2ab90e233bde4648e4eec9d0949e49940ee7ce9cdcd461370dad61bb48a4",
            "sha256:99176d2aa9a1719bade9df1836cc690aa9315f049bf32d7b44b5af146e4215c0",
            "sha256:2fa56e9def782e3c4d04c0dd031cd9423bf0a4c6a79bd14d40328475d5a1eb6e",
            "sha256:c919409f86891d29b0e925076a1b3770c4b8cb9f3a5a1fb1557c6bcd7f8aa6d3",
            "sha256:139abb642c5151533a5274fac77504f025cc7812a7c6caca60e68a3a4f560cca",
            "sha256:948debe6ac27e2c9dc841780c5ef8e54812f79fc40506ff6e700adce9fe78325",
            "sha256:81a4e04d0956fb8896ba82131091634d33ede5bbd0ef3bd1ac917da5703d4f27",
            "sha256:447074fba54c20369082de6154f4c366cb6f3345d1d378c178fa934eed726e96",
            "sha256:134c917786bca85ed024b69ae6704f21d9a569b1d772d86459a8128f513c6804",
            "sha256:50ce832207a777bcbc049a2100d39bb5606533e9c9cb5e0686e223ca280a1b02"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-04-24T17:10:58.404918553+08:00"
    }
}

更多版本

docker.io/postgres:12.19-bullseye

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

docker.io/postgres:15-alpine

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

docker.io/postgres:12.19-alpine3.20

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

docker.io/postgres:16.3-alpine3.20

linux/amd64 docker.io244.93MB2024-06-28 17:32
645

docker.io/postgres:14-alpine

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

docker.io/postgres:15-alpine

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

docker.io/postgres:15.4

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

docker.io/postgres:9.6.21-alpine

linux/arm64 docker.io35.93MB2024-07-24 11:50
340

docker.io/postgres:13.8

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

docker.io/postgres:16

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

docker.io/postgres:9.6.24

linux/amd64 docker.io199.69MB2024-08-01 16:37
586

docker.io/postgres:15.3

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

docker.io/postgres:16.3

linux/amd64 docker.io431.58MB2024-08-02 14:29
376

docker.io/postgres:16.3-bookworm

linux/amd64 docker.io431.58MB2024-08-08 17:41
249

docker.io/postgres:14.2-alpine

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

docker.io/postgres:16.4

linux/amd64 docker.io431.68MB2024-08-27 17:28
664

docker.io/postgres:12.2

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

docker.io/postgres:17

linux/amd64 docker.io434.31MB2024-10-01 13:14
610

docker.io/postgres:17-alpine

linux/amd64 docker.io248.16MB2024-10-03 21:57
502

docker.io/postgres:14.12

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

docker.io/postgres:13.14

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

docker.io/postgres:10-alpine

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

docker.io/postgres:alpine

linux/amd64 docker.io248.16MB2024-10-24 11:56
524

docker.io/postgres:14.7-alpine3.17

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

docker.io/postgres:14.11

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

docker.io/postgres:12.3

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

docker.io/postgres:12

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

docker.io/postgres:9.5

linux/amd64 docker.io197.21MB2024-11-22 11:45
158

docker.io/postgres:11

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

docker.io/postgres:16-alpine

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

docker.io/postgres:9.6.16

linux/amd64 docker.io249.61MB2024-12-04 12:56
175

docker.io/postgres:12.4

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

docker.io/postgres:17.2

linux/amd64 docker.io434.77MB2024-12-19 19:20
283

docker.io/postgrest/postgrest:v12.0.1

linux/amd64 docker.io17.42MB2024-12-24 10:07
287

docker.io/postgres:16.6-alpine3.21

linux/amd64 docker.io274.85MB2024-12-30 14:08
161

docker.io/postgres:15.6

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

docker.io/postgres:13-alpine

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

docker.io/postgres:17.2-alpine3.21

linux/amd64 docker.io277.63MB2025-01-07 14:18
166

docker.io/postgres:11.4

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

docker.io/postgres:14

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

docker.io/postgres:17

linux/arm64 docker.io456.53MB2025-01-27 18:45
214

docker.io/postgres:14.15

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

docker.io/postgres:16.6-bookworm

linux/amd64 docker.io432.28MB2025-02-13 17:57
88

docker.io/postgres:17.2-bookworm

linux/amd64 docker.io434.73MB2025-02-13 18:00
101

docker.io/postgres:17.3-alpine

linux/amd64 docker.io284.35MB2025-02-14 10:44
151

docker.io/postgres:16.4-bullseye

linux/amd64 docker.io400.01MB2025-02-14 11:10
93

docker.io/postgres:15-bullseye

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

docker.io/postgres:15.3

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

docker.io/postgres:15.3-alpine

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

docker.io/postgres:14.17-bookworm

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

docker.io/postgres:13.17

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

docker.io/postgres:13.20

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

docker.io/postgres:15.6

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

docker.io/postgres:16.3-bullseye

linux/amd64 docker.io399.85MB2025-03-13 15:49
61

docker.io/postgres:15.12

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

docker.io/postgres:15.2-alpine

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:15.6-bookworm

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

docker.io/postgres:11.22-alpine

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

docker.io/postgres:17.4

linux/amd64 docker.io438.36MB2025-03-26 11:02
170

docker.io/postgres:latest

linux/amd64 docker.io438.36MB2025-03-26 14:07
184

docker.io/postgres:13

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

docker.io/postgrest/postgrest:v12.2.8

linux/amd64 docker.io17.34MB2025-04-04 13:14
102

docker.io/postgres:14.5

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

docker.io/postgrest/postgrest:latest

linux/amd64 docker.io17.36MB2025-04-17 08:28
32

docker.io/postgres:16.8

linux/amd64 docker.io435.96MB2025-04-18 13:40
39

docker.io/postgres:12.11

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

docker.io/postgres:16.1

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

docker.io/postgres:11.9

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