Namespace
supabase
Image / Tag
postgres:13.3.0
Content Digest
sha256:9161d8cd63641a569acf7f81ac409cbea4cfb0d192ed6bd6e6e326176d2882ed
Details
Created

2021-07-16 18:05:07 UTC

Size

680 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.UTF-8

LANGUAGE

en_US.UTF-8

LC_ALL

en_US.UTF-8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/13/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

13

PG_VERSION

13.3-1.pgdg100+1


Layers

[#000] sha256:b4d181a07f8025e00e0cb28f1cc14613da2ce26450b80c54aea537fa93cf3bda - 3.81% (25.9 MB)

[#001] sha256:46ca1d02c28c23d7be49ab7fa29a9098c72b5b0278224d0cfd8463165fc020e7 - 0.59% (3.99 MB)

[#002] sha256:a756866b55651110c82d478a4d84c87f8f2b62fb031ceaa483ed725632ae48fc - 0.0% (1.76 KB)

[#003] sha256:36c49e539e90787e170cab973c5c22d9ed6aa119b6df188a1fe3738e4d5c1dbf - 0.2% (1.35 MB)

[#004] sha256:664019fbcaffaad28bb7ddb8c63788fa416f47992e5d8ee69872ee167e030a4a - 1.12% (7.6 MB)

[#005] sha256:727aeee9c480a26388cd1b5781aca4ac09044c77e5de9eefd038ca89bc98fc45 - 0.05% (382 KB)

[#006] sha256:796589e6b2239c66f6436e8330d2b8ea31285ab58b50251f6fd64422497a91cd - 0.0% (149 Bytes)

[#007] sha256:add1501eead671e619dc4b891f20c1e9fb63acaff60c09a3664f7328327bba61 - 0.0% (2.98 KB)

[#008] sha256:fdad1da4279059aa60f916fa497f370fb0a3a91a907bbd24709e4fa3acf47d00 - 10.35% (70.4 MB)

[#009] sha256:8c60ea65a03559e33a32e9f7bf6baf251965f845a623e26967b59966dbf2a825 - 0.0% (9.13 KB)

[#010] sha256:ccdfdf5ee2b16c92eb413b32240758bde82c179324cad5db24774084213b911e - 0.0% (129 Bytes)

[#011] sha256:a3e1e8e2882e9d0de1b090fea2eb65891b999c6104a571ad6b62038489aa5850 - 0.0% (201 Bytes)

[#012] sha256:a6032b436e45a66da6900e375d8a5cfe858e6ce6bccf8340e9d31b00e66a2626 - 0.0% (4.3 KB)

[#013] sha256:57e6cbc80cd629dd39e140699c2e29c9269e44e0c4529a6ed64b807e54d805f8 - 83.88% (570 MB)


History
2021-06-23 00:20:40 UTC

/bin/sh -c #(nop) ADD file:4903a19c327468b0e08e4f463cfc162c66b85b4618b5803d71365862f6302e0b in /

2021-06-23 00:20:40 UTC

/bin/sh -c #(nop) CMD ["bash"]

2021-06-23 14:04:20 UTC

/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

2021-06-23 14:04:21 UTC

/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

2021-06-23 14:04:21 UTC

/bin/sh -c #(nop) ENV GOSU_VERSION=1.12

2021-06-23 14:04:31 UTC

/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

2021-06-23 14:04:39 UTC

/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

2021-06-23 14:04:40 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2021-06-23 14:04:44 UTC

/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/*

2021-06-23 14:04:45 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2021-07-12 22:21:30 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --batch --keyserver keyserver.ubuntu.com --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

2021-07-12 22:21:31 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=13

2021-07-12 22:21:31 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/postgresql/13/bin

2021-07-12 22:21:31 UTC

/bin/sh -c #(nop) ENV PG_VERSION=13.3-1.pgdg100+1

2021-07-12 22:21:52 UTC

/bin/sh -c set -ex; export PYTHONDONTWRITEBYTECODE=1; dpkgArch="$(dpkg --print-architecture)"; case "$dpkgArch" in amd64 | arm64 | i386 | ppc64el) echo "deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main $PG_MAJOR" > /etc/apt/sources.list.d/pgdg.list; apt-get update; ;; *) echo "deb-src http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main $PG_MAJOR" > /etc/apt/sources.list.d/pgdg.list; tempDir="$(mktemp -d)"; cd "$tempDir"; savedAptMark="$(apt-mark showmanual)"; apt-get update; DEBIAN_FRONTEND=noninteractive 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' -- '{}' +; postgres --version

2021-07-12 22:21:54 UTC

/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

2021-07-12 22:21:55 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-07-12 22:21:55 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-07-12 22:21:56 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-07-12 22:21:56 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2021-07-12 22:21:56 UTC

/bin/sh -c #(nop) COPY file:e9c9c5e19c7b014c81f4ef8bcc5c1f247c4d9b165d34d35e9a28ca5adb5e0ab3 in /usr/local/bin/

2021-07-12 22:21:57 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2021-07-12 22:21:57 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2021-07-12 22:21:57 UTC

/bin/sh -c #(nop) EXPOSE 5432

2021-07-12 22:21:57 UTC

/bin/sh -c #(nop) CMD ["postgres"]

2021-07-16 18:05:07 UTC

tail -f /dev/null

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete