Namespace
library
Image / Tag
postgres:13.0
Content Digest
sha256:8f7c3c9b61d82a4a021da5d9618faf056633e089302a726d619fa467c73609e4
Details
Created

2020-10-13 16:42:01 UTC

Size

110 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:97e4efec21eea92209464547d0f52a0f773c505cf4ea9d8090cef667bde145b8 - 24.05% (26.5 MB)

[#001] sha256:e3c749690104cd2d067ab453dc94a6cb768cf70e8de2c7b070e3ec6c77cbea76 - 3.94% (4.33 MB)

[#002] sha256:d53e540fa0f9a8216d1625184511d7ae088dfb209a6bfbb7b01c9c28c386c29b - 0.0% (1.72 KB)

[#003] sha256:9f01c54b9c4b48006dab4a6cb134885abb354aeded9eacda10b26e602331d0cb - 1.2% (1.33 MB)

[#004] sha256:dabc4d4ec793f5e333d10d49bbf35728a1ddc5fa3b6e52c352e3d895ac7e082d - 6.9% (7.6 MB)

[#005] sha256:375c7950de1c2fb505ecd4b84309dceec40018957c961d9cea659485543b3d02 - 0.35% (389 KB)

[#006] sha256:b8bdf70f6f30cc05214496056e156b19a2a2e44644781822d902a04d7011b734 - 0.0% (115 Bytes)

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

[#008] sha256:191d0c377d25905e6dcc7b0de1ec1f2a925efa054feeaa7c4f346f5e646909a7 - 63.55% (69.9 MB)

[#009] sha256:c55cc6354a2dd5815e1a906ddf70063dc921507ad77e83ff37dae5169aa089eb - 0.01% (9.05 KB)

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

[#011] sha256:ed0968e8f318a7dfc521a4a9dc8a9f35b5c096513aacaeda21888f91910aabf8 - 0.0% (168 Bytes)

[#012] sha256:af57a264872aebf23e30761bdd8f746d80cdde00ab2b6aca8f8becb55339782d - 0.0% (4.16 KB)

[#013] sha256:e4dec4d85f466ca05a9c86992e601e395a740f8a0d8cf148f7bd57921a97818c - 0.0% (121 Bytes)


History
2020-10-13 01:41:03 UTC

/bin/sh -c #(nop) ADD file:51108b89c70ce0773c897be520c84454660f38b84ba556da49c7fe77e5d52416 in /

2020-10-13 01:41:03 UTC

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

2020-10-13 16:41:01 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

2020-10-13 16:41:02 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

2020-10-13 16:41:02 UTC

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

2020-10-13 16:41:14 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

2020-10-13 16:41:22 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

2020-10-13 16:41:23 UTC

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

2020-10-13 16:41:28 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/*

2020-10-13 16:41:29 UTC

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

2020-10-13 16:41:30 UTC

/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 16:41:30 UTC

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

2020-10-13 16:41:30 UTC

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

2020-10-13 16:41:56 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 16:41:57 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

2020-10-13 16:41:57 UTC

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

2020-10-13 16:41:58 UTC

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

2020-10-13 16:41:58 UTC

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

2020-10-13 16:41:59 UTC

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

2020-10-13 16:41:59 UTC

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

2020-10-13 16:41:59 UTC

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

2020-10-13 16:42:00 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 16:42:00 UTC

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

2020-10-13 16:42:01 UTC

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

2020-10-13 16:42:01 UTC

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

2020-10-13 16:42:01 UTC

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

Details
Created

2020-10-13 12:32:39 UTC

Size

109 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:bb79b6b2107fea8e8a47133a660b78e3a546998fcf0427be39ac9a0af4a97e90 - 23.61% (25.8 MB)

[#001] sha256:e3dc51fa2b560b7daf34aa4c2501941b4ce0d701c4ecf571777b13d79561f1bc - 3.64% (3.98 MB)

[#002] sha256:f213b6f96d81fa40e97b4eb61a159f716d77a4c70a25f376525385d7836bdee2 - 0.0% (1.73 KB)

[#003] sha256:2780ac832fdea1b95491eaf082507289c13fc77e97de2716ee80e851cce0c79a - 1.24% (1.35 MB)

[#004] sha256:ae5cee1a3f123d23889bfdd0941b304d3906c90e136ec0e13f340b473096902f - 6.94% (7.6 MB)

[#005] sha256:95db3c06319e21f4c21eff545348f1755e5979d63c551a5b82bf9ff55ef30fa5 - 0.34% (382 KB)

[#006] sha256:475ca72764d52e2efe3b99160dbf36815c6be1ffda0790cc7e22354796185f08 - 0.0% (115 Bytes)

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

[#008] sha256:c4fca31f2e3d83c36758a751e320fd26cb77d6f17a5f07b73989d935ddbfd510 - 64.21% (70.3 MB)

[#009] sha256:a00c442835e0871a8bcee1d389c603ff88190004b04ab5186d59836f2c3379e8 - 0.01% (9.05 KB)

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

[#011] sha256:6cff852bb872a5b4dd86f2528157acb8c3ab2f59f5bce84a91e38990afb7e798 - 0.0% (169 Bytes)

[#012] sha256:25bb0be115435b86fab9f9ac77ee9b01ca697d631038ff6e062ff203baf0a1fb - 0.0% (4.16 KB)

[#013] sha256:4738c099c4ad0480a6ea8a835aaf6777de42ec140984844cd53b9e05f8c44004 - 0.0% (121 Bytes)


History
2020-10-13 01:39:05 UTC

/bin/sh -c #(nop) ADD file:0dc53e7886c35bc21ae6c4f6cedda54d56ae9c9e9cd367678f1a72e68b3c43d4 in /

2020-10-13 01:39:05 UTC

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

2020-10-13 12:31:48 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

2020-10-13 12:31:49 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

2020-10-13 12:31:49 UTC

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

2020-10-13 12:31:58 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

2020-10-13 12:32:06 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

2020-10-13 12:32:07 UTC

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

2020-10-13 12:32:12 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/*

2020-10-13 12:32:12 UTC

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

2020-10-13 12:32:13 UTC

/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 12:32:14 UTC

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

2020-10-13 12:32:14 UTC

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

2020-10-13 12:32:34 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 12:32:35 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

2020-10-13 12:32:35 UTC

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

2020-10-13 12:32:36 UTC

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

2020-10-13 12:32:36 UTC

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

2020-10-13 12:32:37 UTC

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

2020-10-13 12:32:37 UTC

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

2020-10-13 12:32:37 UTC

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

2020-10-13 12:32:38 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 12:32:38 UTC

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

2020-10-13 12:32:38 UTC

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

2020-10-13 12:32:39 UTC

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

2020-10-13 12:32:39 UTC

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

Details
Created

2020-10-13 06:43:49 UTC

Size

104 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:f991c1e1ee2c48f16625b6b61310bf3c0616c0dbda4762019117e86fd29cf9ce - 22.8% (23.7 MB)

[#001] sha256:220f749165a848f7f38bac836c52f4b835c99e7d95e05ee20dadaec192039226 - 3.53% (3.67 MB)

[#002] sha256:99328c93a7de72d797aa8f54b8f5f65ac8dcfcb8adfcf619deb383521090b6a8 - 0.0% (1.75 KB)

[#003] sha256:877588e4293d5c0bc10377dd6a2128f747be69e1e9176d0d8a2e6408917422ff - 1.27% (1.31 MB)

[#004] sha256:aa96f5e00aa670ea297c3d7b88aef48e3e83cecb4a2957ba6e1193fc4f3a0eba - 7.31% (7.6 MB)

[#005] sha256:f3e8a16e6b99574961ad43e457e425366fa1f111b3ce41c801ae3c66b5e68c86 - 0.36% (381 KB)

[#006] sha256:511e0945d4fb63b1f0366268b49f03e65681c8615d784c5ba2485563cf6d1f21 - 0.0% (149 Bytes)

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

[#008] sha256:4bf7b596aa05f83df06a644f9ce328ce279a1e0ba14b85696788de96ab737ddb - 64.72% (67.2 MB)

[#009] sha256:3fb22e708f1b3e5dff44453d0399222d13620e8be2f2c772c8d456c856f96da4 - 0.01% (9.05 KB)

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

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

[#012] sha256:6f819a8254858e6516d31a74081043ed355681e338f5849486a307a2aa19048e - 0.0% (4.16 KB)

[#013] sha256:28de01a1ab0d2e4e95474888fc65ad4af854f91efa1f14f065382069ebc0917e - 0.0% (121 Bytes)


History
2020-10-13 01:52:17 UTC

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

2020-10-13 01:52:27 UTC

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

2020-10-13 06:16:10 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

2020-10-13 06:16:12 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

2020-10-13 06:16:13 UTC

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

2020-10-13 06:16: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

2020-10-13 06:16:47 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

2020-10-13 06:16:48 UTC

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

2020-10-13 06:16:58 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/*

2020-10-13 06:17:01 UTC

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

2020-10-13 06:17:03 UTC

/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 06:17:04 UTC

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

2020-10-13 06:17:05 UTC

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

2020-10-13 06:43:30 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 06:43:34 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

2020-10-13 06:43:36 UTC

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

2020-10-13 06:43:37 UTC

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

2020-10-13 06:43:38 UTC

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

2020-10-13 06:43:41 UTC

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

2020-10-13 06:43:42 UTC

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

2020-10-13 06:43:42 UTC

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

2020-10-13 06:43:45 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 06:43:46 UTC

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

2020-10-13 06:43:47 UTC

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

2020-10-13 06:43:48 UTC

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

2020-10-13 06:43:49 UTC

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

Details
Created

2020-10-13 05:29:22 UTC

Size

100 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:d6d8411ad43db0022fa0fce094cd2e8b1dd2f8a09d6880ed9beb6b4204867027 - 21.62% (21.6 MB)

[#001] sha256:2e9abeb7fdbbade7b8abd012862e54cc393b34cd5ded22d30651c3d96f804017 - 3.32% (3.32 MB)

[#002] sha256:c060aae45342f7e836211d989e2a8acbbc00aa77c9cedf463bc22d3931011b38 - 0.0% (1.75 KB)

[#003] sha256:df78177be2b9c4f60b1d775bbe3774b00e3c1c567c4f122bbdff0d8c9be841a8 - 1.31% (1.31 MB)

[#004] sha256:9bb71a60beb691d7f1f8351012f0a88049401c5ee2057e4a830758eee6c8dae4 - 7.59% (7.6 MB)

[#005] sha256:b4d3d3aab018a14d7c2ecdf71b6ba41d4a5521ba93a7a91a5ef2c466512f6165 - 0.37% (376 KB)

[#006] sha256:2443ca999a57081e3059a2ce066d226d974c0bfe22f8f887df06da48744d1b04 - 0.0% (149 Bytes)

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

[#008] sha256:ff7812530b8edbe3e8038a3f3ec17ae95fd1589ae6341af1725858e1d0b02394 - 65.78% (65.9 MB)

[#009] sha256:6f22889ebf9de2c6d34abee77286c2e5ff8184fd3b9e97d8a0ec4ff9303219fb - 0.01% (9.06 KB)

[#010] sha256:7bc99b88e591c236507bc93a29ac74921a6a9c6e09472065b67665870ed09f19 - 0.0% (130 Bytes)

[#011] sha256:a2a4c25625ec9a36c08c757ef59b112d266f6cef4d71a069746026f925ee9796 - 0.0% (202 Bytes)

[#012] sha256:98eb3b82d2dfbb399ffeaff5992b19368614746e01205a39973031aa9bf667dc - 0.0% (4.16 KB)

[#013] sha256:8c7031c8ae6bfe4c28598680fbfab04adb945f369033071a41102ccf52d070c6 - 0.0% (121 Bytes)


History
2020-10-13 00:59:29 UTC

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

2020-10-13 00:59:31 UTC

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

2020-10-13 05:03:03 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

2020-10-13 05:03:09 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

2020-10-13 05:03:10 UTC

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

2020-10-13 05:03:33 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

2020-10-13 05:03:51 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

2020-10-13 05:03:52 UTC

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

2020-10-13 05:04:02 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/*

2020-10-13 05:04:05 UTC

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

2020-10-13 05:04:09 UTC

/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 05:04:10 UTC

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

2020-10-13 05:04:11 UTC

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

2020-10-13 05:29:03 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 05:29:09 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

2020-10-13 05:29:11 UTC

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

2020-10-13 05:29:12 UTC

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

2020-10-13 05:29:13 UTC

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

2020-10-13 05:29:15 UTC

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

2020-10-13 05:29:16 UTC

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

2020-10-13 05:29:17 UTC

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

2020-10-13 05:29:19 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 05:29:20 UTC

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

2020-10-13 05:29:21 UTC

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

2020-10-13 05:29:21 UTC

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

2020-10-13 05:29:22 UTC

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

Details
Created

2020-10-13 11:02:53 UTC

Size

106 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:4e6164a63b7b4cf981546947e191644c122214975d40b51ede0536791ebec3d4 - 23.28% (24.7 MB)

[#001] sha256:08b54dce2ac1eb5c484547daceb63d77b4ebf86f7adfd08524a95ce1aff995a0 - 3.76% (3.98 MB)

[#002] sha256:35640a43c389c81984759b8bf006675c2a1e3022a8d2d264a668d146e4769dbd - 0.0% (1.77 KB)

[#003] sha256:954d8cf15b37983553c28d10814bd8446e8868be10ddf07020e44a34f42f42b0 - 1.22% (1.29 MB)

[#004] sha256:4cabadd29423fceb4b9404f0cd2f1acbbd9e1a5ae16cb2ede30fb5d61c03754d - 7.17% (7.6 MB)

[#005] sha256:fb1dd2db3831e8b25aa548ca0e46c9d5401d403008baebac964b6d92481f854b - 0.35% (380 KB)

[#006] sha256:8e4df45b4efe24423097c32f0333b82820205f47b219e75a9ef9cb82de56f0b5 - 0.0% (149 Bytes)

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

[#008] sha256:598355fbe9f5b6cd68053bc6fe6357bb74394c1a74d2b8246e3fa01f4dddb68c - 64.2% (68 MB)

[#009] sha256:5bc69a8470043117cb274d54203477ac732c8cc100ce015512f6bcb3b24df6b9 - 0.01% (9.05 KB)

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

[#011] sha256:8d44ba2b6c2bafc61dac4cb65a9a6da79a2eb11bce12324ae132d4cde3e631a8 - 0.0% (203 Bytes)

[#012] sha256:1e1f22e595f6fdf38d7d04949e2ff149b9d62f547aa1cb0ec7c262af3bfe5f10 - 0.0% (4.16 KB)

[#013] sha256:4f34ec236671db6a5b58d63a24446815ee2e0468f8826bba296f23dea12fd644 - 0.0% (121 Bytes)


History
2020-10-13 01:41:09 UTC

/bin/sh -c #(nop) ADD file:3488b1423094a75be5bb5956e9187827b8dd35d7a1f2b14081f8e74a1629e7d0 in /

2020-10-13 01:41:11 UTC

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

2020-10-13 11:01:14 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

2020-10-13 11:01:16 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

2020-10-13 11:01:17 UTC

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

2020-10-13 11:01:34 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

2020-10-13 11:01:47 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

2020-10-13 11:01:49 UTC

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

2020-10-13 11:01:59 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/*

2020-10-13 11:02:02 UTC

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

2020-10-13 11:02:04 UTC

/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 11:02:05 UTC

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

2020-10-13 11:02:06 UTC

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

2020-10-13 11:02:39 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 11:02:43 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

2020-10-13 11:02:44 UTC

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

2020-10-13 11:02:45 UTC

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

2020-10-13 11:02:45 UTC

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

2020-10-13 11:02:47 UTC

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

2020-10-13 11:02:48 UTC

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

2020-10-13 11:02:48 UTC

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

2020-10-13 11:02:50 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 11:02:51 UTC

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

2020-10-13 11:02:51 UTC

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

2020-10-13 11:02:52 UTC

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

2020-10-13 11:02:53 UTC

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

Details
Created

2020-10-13 14:06:47 UTC

Size

105 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:9bc77d453b2242ec513032b61e23061712b79c3ba0c60114232d743e5ab4e4fa - 23.35% (24.6 MB)

[#001] sha256:6e607f4b85ab0160062c5b0997b24f9c552c3b0a99c818918df616f061bc1582 - 3.79% (3.99 MB)

[#002] sha256:7b2e3c1d8252ef141fbeb05954df9c4cffe4be8a378178b0f7bc970a74a6c7a5 - 0.0% (1.73 KB)

[#003] sha256:fea3f4e38a84676f0d0f445a051330b19231188038d657dd3578c9ca400f1984 - 1.19% (1.25 MB)

[#004] sha256:693bc9170e37b7197108bb722eaee5a99c4b901d9be26a821a6b1d4db05f4362 - 7.22% (7.6 MB)

[#005] sha256:fab188a504bfa78fc88e311060cec8f95d3e3117d1419d605ac3ff070b82d000 - 0.35% (380 KB)

[#006] sha256:e94c8867122219de48b09839756b0ffd313a762e792727c7390ae175987591ab - 0.0% (113 Bytes)

[#007] sha256:079c91791bcc494ca3ceef784e9686b641a2dfd712ce9279a1b3f406a9c2dce0 - 0.0% (2.99 KB)

[#008] sha256:e2ed439ff0db80133ad5c64fd6f680da2629710df67c477195efe628627f8aa9 - 64.08% (67.4 MB)

[#009] sha256:86ef9de52f6e2ba62c847999fa0535d0640c61757dbce18666ef659edd3a715c - 0.01% (9.05 KB)

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

[#011] sha256:2102f301ca71ccd15c8150f9420fe86cb7f59885a1f4d0742fc76d7cff131dc4 - 0.0% (169 Bytes)

[#012] sha256:e563574ec7e322fff2134f1556e556d32d17984dd3a35fb760389b3fd08551a7 - 0.0% (4.16 KB)

[#013] sha256:54e039d4d6237abc30a0d5f84382970f19bd8bd887db7069953d0c3a122ce3ad - 0.0% (121 Bytes)


History
2020-10-13 01:09:50 UTC

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

2020-10-13 01:09:50 UTC

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

2020-10-13 13:13:36 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

2020-10-13 13:13:38 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

2020-10-13 13:13:38 UTC

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

2020-10-13 13:13:59 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

2020-10-13 13:14:23 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

2020-10-13 13:14:24 UTC

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

2020-10-13 13:14:36 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/*

2020-10-13 13:14:38 UTC

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

2020-10-13 13:14:41 UTC

/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 13:14:41 UTC

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

2020-10-13 13:14:41 UTC

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

2020-10-13 14:06:36 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 14:06:39 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

2020-10-13 14:06:41 UTC

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

2020-10-13 14:06:41 UTC

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

2020-10-13 14:06:42 UTC

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

2020-10-13 14:06:43 UTC

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

2020-10-13 14:06:44 UTC

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

2020-10-13 14:06:44 UTC

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

2020-10-13 14:06:46 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 14:06:46 UTC

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

2020-10-13 14:06:47 UTC

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

2020-10-13 14:06:47 UTC

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

2020-10-13 14:06:47 UTC

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

Details
Created

2020-10-13 12:37:13 UTC

Size

116 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:523555c6877c72cfcdec912b4d0053c298b1c97835efc7c6b0211585a06bd563 - 25.01% (29.1 MB)

[#001] sha256:b9561d545502ace2058d00663781db14dfa7756b6edb0acc8d79700400b867d9 - 4.07% (4.74 MB)

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

[#003] sha256:623858b6704dcb200beeee22ceb00bbeed4613a5b3d2df4ea7e457712e441d52 - 1.1% (1.28 MB)

[#004] sha256:740971b5e3abf8f64361a1c8b2c4925b1c6f6a64ff7bd7482fa567278cd16ad6 - 6.53% (7.6 MB)

[#005] sha256:4ca8928d4fa7be49ec051fe27e367a44509f36af44275dabf2115d9dadadda84 - 0.33% (388 KB)

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

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

[#008] sha256:420d0a7efbf19ebce8f0088536a373b3205d7466526a64b3dae9f5423362edc0 - 62.95% (73.3 MB)

[#009] sha256:f32c8c22f6099516385dade75212072689a00ecaa4e2034386050b6b785c8529 - 0.01% (9.05 KB)

[#010] sha256:92629bd5781650a7387e7af4a085d350ab77b488099d6e82ce955f2f03ffe57d - 0.0% (128 Bytes)

[#011] sha256:7347194451e408bb9299f91edc3f6c9f3dce6779ed0ccf606fdb9f162b038165 - 0.0% (203 Bytes)

[#012] sha256:b9193f231104f9dfe1bdb76f320002ba8f6730d35c8f8fa475ae27ad533682c6 - 0.0% (4.16 KB)

[#013] sha256:30870777ec22e86f3dba3808deb5da9b9a5427e1c804b15d21140d9c9e51424e - 0.0% (120 Bytes)


History
2020-10-13 01:38:54 UTC

/bin/sh -c #(nop) ADD file:9992867f855c9bed54df6d26f3d8076689aff8a51e808fefba7d3b66dab250e5 in /

2020-10-13 01:38:59 UTC

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

2020-10-13 12:31:24 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

2020-10-13 12:31:39 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

2020-10-13 12:31:42 UTC

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

2020-10-13 12:32:35 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

2020-10-13 12:33:05 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

2020-10-13 12:33:13 UTC

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

2020-10-13 12:33: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/*

2020-10-13 12:34:02 UTC

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

2020-10-13 12:34:16 UTC

/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 12:34:20 UTC

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

2020-10-13 12:34:24 UTC

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

2020-10-13 12:35:57 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 12:36:14 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

2020-10-13 12:36:22 UTC

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

2020-10-13 12:36:24 UTC

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

2020-10-13 12:36:27 UTC

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

2020-10-13 12:36:36 UTC

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

2020-10-13 12:36:43 UTC

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

2020-10-13 12:36:44 UTC

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

2020-10-13 12:36:55 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 12:37:00 UTC

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

2020-10-13 12:37:03 UTC

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

2020-10-13 12:37:07 UTC

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

2020-10-13 12:37:13 UTC

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

Details
Created

2020-10-13 05:39:38 UTC

Size

108 MB

Content Digest
Environment
GOSU_VERSION

1.12

LANG

en_US.utf8

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.0-1.pgdg100+1


Layers

[#000] sha256:2a4f9dc00d797c86c4ffce3b50bea9037c2eb4637f045ad3fd68cf151577b639 - 22.74% (24.5 MB)

[#001] sha256:be7246467ce71536a8e2ade5b913ba8c8c2c284426242907721099dceee57b3d - 3.59% (3.87 MB)

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

[#003] sha256:316d02a9da51a3528085a50af6a3c3fc112a9892918038b44473e607269bce40 - 1.24% (1.34 MB)

[#004] sha256:dec69c124ec4c64206aeea60c42ea10de9b1af911bd0efc456c487758989c627 - 7.09% (7.65 MB)

[#005] sha256:cd1b1f52aea9588cf7dfe5864c787e643d0461967d4b63ce5186c896f2c7af72 - 0.34% (379 KB)

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

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

[#008] sha256:511d1c3258fd3b50e59f2508c15a8012230255ffaadb4a60b3e627e45a528d2c - 64.97% (70 MB)

[#009] sha256:b1320a06bf97139418261449c854dd4c2c5f3c62cc46a7ec5b79db8df49ef2d0 - 0.01% (9.05 KB)

[#010] sha256:d4964cb4e537ebb6eb9840daa00c600a9fb570b5eb8a25db62f692d995d7443c - 0.0% (130 Bytes)

[#011] sha256:7e7a1074d81612d7507a6fe22514c36a9e5c1d65acd408b92640e10767898c85 - 0.0% (200 Bytes)

[#012] sha256:305ce2b8a378c07a61cbc72936f4f9f922e7bc65147995fb54d39590fa774d8e - 0.0% (4.16 KB)

[#013] sha256:d384c65ea5d63596390498b0b7ea2023e387bb9d771fbd297a40e5180fb480d5 - 0.0% (121 Bytes)


History
2020-10-13 01:42:26 UTC

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

2020-10-13 01:42:27 UTC

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

2020-10-13 05:29:41 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

2020-10-13 05:29:42 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

2020-10-13 05:29:43 UTC

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

2020-10-13 05:29:53 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

2020-10-13 05:30:00 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

2020-10-13 05:30:01 UTC

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

2020-10-13 05:30:05 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/*

2020-10-13 05:30:06 UTC

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

2020-10-13 05:30:07 UTC

/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 05:30:07 UTC

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

2020-10-13 05:30:08 UTC

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

2020-10-13 05:39:30 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; case "$PG_MAJOR" in 9.* | 10 ) ;; *) echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list.d/pgdg.list; ;; esac; 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' -- '{}' +

2020-10-13 05:39:34 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

2020-10-13 05:39:35 UTC

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

2020-10-13 05:39:35 UTC

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

2020-10-13 05:39:35 UTC

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

2020-10-13 05:39:36 UTC

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

2020-10-13 05:39:36 UTC

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

2020-10-13 05:39:36 UTC

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

2020-10-13 05:39:37 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2020-10-13 05:39:37 UTC

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

2020-10-13 05:39:37 UTC

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

2020-10-13 05:39:38 UTC

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

2020-10-13 05:39:38 UTC

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

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