Namespace
library
Image / Tag
postgres:10-beta4
Content Digest
sha256:6f077f2c9950462808fddc4d01f58b096a41774af6d8b52ad2e7255c41d5f244
Details
Created

2017-09-19 06:58:41 UTC

Size

112 MB

Content Digest
Environment
GOSU_VERSION

1.10

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_VERSION

10~beta4-1.pgdg90+1


Layers

[#000] sha256:219d2e45b4afc3d80375a2fcf76505684de01f55027fb35a691099f0e538fdd8 - 38.41% (43 MB)

[#001] sha256:87b4d6274d7716c4dbf67b92c421750ef3a6513e385dd48a47146219c7a3d77e - 6.14% (6.88 MB)

[#002] sha256:2569a32ee6dd4d651bd02f3ea71f60d9bc6969c70c26d6306a7b72cbb1870393 - 0.0% (1.71 KB)

[#003] sha256:23b4d0fc31922c229cb33c7c7e01ca0f16ece5822121f709f3a2b61149c07e68 - 0.81% (934 KB)

[#004] sha256:8275aae461c7d8db771c1c9b3bcbf3a2956555e62e552f4f5d725c56593aac7f - 5.6% (6.27 MB)

[#005] sha256:45087ee6fc31c023b9208ea548b0490c254cf452728d877cbb1b1cc9906858f0 - 0.0% (115 Bytes)

[#006] sha256:2d2265f720a6572f001f677339179495c0cd3c90403e22bdfdeed22d8b81f5d9 - 0.0% (4.38 KB)

[#007] sha256:68027e9903da895161837a1e968e290179c32ffe2bf79b2e0ee3b34bbdfbc5a3 - 49.02% (54.9 MB)

[#008] sha256:0eb45d4664c3f6d65b5bdd779216e67887765cb02ea7c35cd63266916cee4798 - 0.01% (7.13 KB)

[#009] sha256:b70f0973e05cadb9f94740d3706cedb3f37361f5e504e0e8c2539b8bb5168a3f - 0.0% (129 Bytes)

[#010] sha256:9185121770413eaed4867995f75ea0a5f5e9364e77426099d2618e4c78096667 - 0.0% (169 Bytes)

[#011] sha256:7b8e37ab8ad2e40600191993e7c55d6c46603d2b1aaf1bf06b6741398cba2688 - 0.0% (1.77 KB)

[#012] sha256:9c796af3850a779794ab440f23b9868d9afd2c36069d6855251610c05bc372b8 - 0.0% (121 Bytes)


History
2017-09-13 08:41:42 UTC

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

2017-09-13 08:41:42 UTC

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

2017-09-19 06:57:52 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg2 dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2017-09-19 06:57:53 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2017-09-19 06:57:53 UTC

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

2017-09-19 06:58:07 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-09-19 06:58:12 UTC

/bin/sh -c apt-get update && apt-get install -y 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

2017-09-19 06:58:12 UTC

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

2017-09-19 06:58:13 UTC

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

2017-09-19 06:58:16 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; rm -rf "$GNUPGHOME"; apt-key list

2017-09-19 06:58:17 UTC

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

2017-09-19 06:58:17 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10~beta4-1.pgdg90+1

2017-09-19 06:58:37 UTC

/bin/sh -c set -ex; 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; 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 postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y "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

2017-09-19 06:58:38 UTC

/bin/sh -c mv -v "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample" /usr/share/postgresql/ && 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

2017-09-19 06:58:39 UTC

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

2017-09-19 06:58:39 UTC

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

2017-09-19 06:58:39 UTC

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

2017-09-19 06:58:39 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2017-09-19 06:58:40 UTC

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

2017-09-19 06:58:40 UTC

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

2017-09-19 06:58:40 UTC

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

2017-09-19 06:58:41 UTC

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

2017-09-19 06:58:41 UTC

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

2017-09-19 06:58:41 UTC

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

Details
Created

2017-09-08 15:43:45 UTC

Size

114 MB

Content Digest
Environment
GOSU_VERSION

1.10

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_VERSION

10~beta4-1.pgdg90+1


Layers

[#000] sha256:38807300bd16de4a00efeffb81570740677ff99a2307929b5335a897a79864df - 38.32% (43.7 MB)

[#001] sha256:4275b8f27e501632391eca23495f8029836141eb0ce7534d32c2dcf4192d99d4 - 6.29% (7.17 MB)

[#002] sha256:a8e5c68ac664cf108a6678ffc8adf49343dd32ab47ca6688122fc9e1d3da5312 - 0.0% (1.7 KB)

[#003] sha256:33d36e26c3e382835d5f5aa7a01bf48d2665c699f4dcb2f4c903d83b59e12fc9 - 0.78% (914 KB)

[#004] sha256:8f98d276db4d972d49b1b6978a475d2c578e60d1cd91555513443104efcdad11 - 5.5% (6.27 MB)

[#005] sha256:c297fa48ec2fb595b2a9a94a3aa97c8f1bdd3d9278f498be6e9b763d48212988 - 0.0% (115 Bytes)

[#006] sha256:cb8631ee268047408af7496be739183a1a98f5e67bd6d599b00361d372d812dc - 0.0% (4.38 KB)

[#007] sha256:b3a6a71335a68c165f5cd9f1990c1b8a3c5b3ea2c6b344982bb16b116737853e - 49.09% (56 MB)

[#008] sha256:bca82b0e2a5981f069fe6257ecef705ef1b92de0fd103217a620acb2384d3312 - 0.01% (7.13 KB)

[#009] sha256:9f68bcf0a6894794baf71f8501bef4698400de5852e15914988ebb7537be2135 - 0.0% (129 Bytes)

[#010] sha256:58b6e1442d5ea377ed94562bb277410a18f35b1f674d0441b6c68f3c31faa2e7 - 0.0% (171 Bytes)

[#011] sha256:c2244518451219184d2e9dfec636c11926baf50c5cee6bcb9c83e76520ec6d68 - 0.0% (1.77 KB)

[#012] sha256:99b914ffda511cfb61ad1e115321227dedb7bfc579b126ab8b8cabbac57532e8 - 0.0% (121 Bytes)


History
2017-09-08 13:19:45 UTC

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

2017-09-08 13:19:46 UTC

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

2017-09-08 15:42:33 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg2 dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2017-09-08 15:42:34 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2017-09-08 15:42:34 UTC

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

2017-09-08 15:42:49 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-09-08 15:42:54 UTC

/bin/sh -c apt-get update && apt-get install -y 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

2017-09-08 15:42:54 UTC

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

2017-09-08 15:42:55 UTC

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

2017-09-08 15:42:58 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; rm -rf "$GNUPGHOME"; apt-key list

2017-09-08 15:42:59 UTC

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

2017-09-08 15:42:59 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10~beta4-1.pgdg90+1

2017-09-08 15:43:39 UTC

/bin/sh -c set -ex; 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; 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 postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y "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

2017-09-08 15:43:40 UTC

/bin/sh -c mv -v "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample" /usr/share/postgresql/ && 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

2017-09-08 15:43:41 UTC

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

2017-09-08 15:43:41 UTC

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

2017-09-08 15:43:41 UTC

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

2017-09-08 15:43:42 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2017-09-08 15:43:43 UTC

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

2017-09-08 15:43:43 UTC

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

2017-09-08 15:43:44 UTC

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

2017-09-08 15:43:44 UTC

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

2017-09-08 15:43:45 UTC

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

2017-09-08 15:43:45 UTC

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

Details
Created

2017-09-09 00:58:24 UTC

Size

111 MB

Content Digest
Environment
GOSU_VERSION

1.10

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_VERSION

10~beta4-1.pgdg90+1


Layers

[#000] sha256:dfcb038706ea089b8e701c5bfce59c00a98c88092993630571599baa72487c2b - 37.5% (41.8 MB)

[#001] sha256:0f80428f4942933b3aea2e5467cd5a87a0ee53433ce430bf66151746057ce74f - 5.95% (6.63 MB)

[#002] sha256:ea55255f8ed5d10195eb6b5fdc3cf43048ed4e224a4648090055f012d40bc733 - 0.0% (1.7 KB)

[#003] sha256:5119d32d5306be9b95a37b6b786febb7ee14bfdb6e3494a5804ba11316b7a30b - 0.81% (925 KB)

[#004] sha256:e46ce7189e2aefad5a3c9b1bdb5a1a8ede18dc56137a6729676985d437b1a0da - 5.63% (6.27 MB)

[#005] sha256:9df64714cfdf41c863e30f7688d98b3c46c5a3f991820c925661ba42e9564067 - 0.0% (115 Bytes)

[#006] sha256:5788419d98516292ef45fdba9feb1a6909c0fbe74bd8cdba5746a9dc74d6cfcb - 0.0% (4.38 KB)

[#007] sha256:136da8e1a43e4998a98a7824b2243a9660fd28048b61a7ffd6bf415695677339 - 50.09% (55.8 MB)

[#008] sha256:1a1f628955f2389ca2c739df046a3c5c389a174b0bea1535e34c2808e4d9a155 - 0.01% (7.13 KB)

[#009] sha256:d132e57924f6c64f726fafedce596a4c085f369772ada6e4516fe5e4313ef554 - 0.0% (130 Bytes)

[#010] sha256:23ae4da69abe671f892c5fbff19b5da69c2ec47db41863bca8ea509d50d333ef - 0.0% (169 Bytes)

[#011] sha256:1727e2d308ec70c21c823b5a6129ba582a6138ff6e3b80016cddea0b698020ae - 0.0% (1.77 KB)

[#012] sha256:fe058181e06db7413f86eae5256fda589da89b03c657e193c02ad46f584c103e - 0.0% (121 Bytes)


History
2017-09-08 20:03:39 UTC

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

2017-09-08 20:03:42 UTC

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

2017-09-08 23:49:48 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg2 dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2017-09-08 23:49:51 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2017-09-08 23:49:52 UTC

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

2017-09-09 00:10:19 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-09-09 00:14:43 UTC

/bin/sh -c apt-get update && apt-get install -y 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

2017-09-09 00:14:44 UTC

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

2017-09-09 00:14:46 UTC

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

2017-09-09 00:14:52 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; rm -rf "$GNUPGHOME"; apt-key list

2017-09-09 00:14:52 UTC

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

2017-09-09 00:14:53 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10~beta4-1.pgdg90+1

2017-09-09 00:58:01 UTC

/bin/sh -c set -ex; 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; 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 postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y "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

2017-09-09 00:58:07 UTC

/bin/sh -c mv -v "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample" /usr/share/postgresql/ && 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

2017-09-09 00:58:09 UTC

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

2017-09-09 00:58:14 UTC

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

2017-09-09 00:58:16 UTC

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

2017-09-09 00:58:18 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2017-09-09 00:58:19 UTC

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

2017-09-09 00:58:20 UTC

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

2017-09-09 00:58:22 UTC

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

2017-09-09 00:58:23 UTC

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

2017-09-09 00:58:24 UTC

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

2017-09-09 00:58:24 UTC

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

Details
Created

2017-08-31 21:19:47 UTC

Size

108 MB

Content Digest
Environment
GOSU_VERSION

1.10

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_VERSION

10~beta4-1.pgdg90+1


Layers

[#000] sha256:ed4f1f0d0a0457e7f76ffb25a8d6a193007709dd312b7647cb44fc6979ec4a53 - 37.11% (39.9 MB)

[#001] sha256:d39e08712623c47f180d180ae36578eebdca88554201649bd5de9aaea5064788 - 5.84% (6.28 MB)

[#002] sha256:4783598ea377b1bbe34d736f0514427d03a9ce40706fc579923585fe58f0aa50 - 0.0% (1.7 KB)

[#003] sha256:fc6f2af760b001bace17c29527368683d3bee8037455956d74da815c0d0fa6b8 - 0.83% (910 KB)

[#004] sha256:dd44efc2656ebee54719a33d6b6a48110d8e57dd7af3fff7d358230d36e8a035 - 5.83% (6.27 MB)

[#005] sha256:c2524a818376287fbadd27724e1eb045c4f3a376fef9a7abed3bf67b82f82a35 - 0.0% (115 Bytes)

[#006] sha256:827cdff65fa31d73e1642f138a9dde775b0080555b74e1de239564c521378c3f - 0.0% (4.38 KB)

[#007] sha256:f9226cebd4ddb3c219ccea5ba6330409c3d3f7d8aaa4b91c5de5d2c53ae52a86 - 50.38% (54.2 MB)

[#008] sha256:1c7074a02c561f8d59d53072e72abbb9ea2cfcc18f8c9010b3bcebb921792678 - 0.01% (7.13 KB)

[#009] sha256:e22bf0b2f538265b15a2c2182bfa81ab56d1d9b7ed2ce5ac6857ae5deafed9c1 - 0.0% (129 Bytes)

[#010] sha256:f796b821ca1e0b0231bfe651189a91589dc7b0f40c96eeaff6888fc0559b0040 - 0.0% (171 Bytes)

[#011] sha256:5d16f42faded7deaca196c4c5db0c1dc3c8d474919920fe8b1451fb6d7fe2029 - 0.0% (1.77 KB)

[#012] sha256:21804ac2607abc8fd75e2a046620db6afc4d3c187d98ad30edca2e619c5a284b - 0.0% (121 Bytes)


History
2017-07-25 12:58:38 UTC

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

2017-07-25 12:58:39 UTC

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

2017-08-31 20:35:36 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg2 dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2017-08-31 20:35:39 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2017-08-31 20:35:40 UTC

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

2017-08-31 20:36:31 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-08-31 20:36:50 UTC

/bin/sh -c apt-get update && apt-get install -y 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

2017-08-31 20:36:51 UTC

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

2017-08-31 20:36:53 UTC

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

2017-08-31 20:37:45 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; rm -rf "$GNUPGHOME"; apt-key list

2017-08-31 20:37:46 UTC

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

2017-08-31 20:37:47 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10~beta4-1.pgdg90+1

2017-08-31 21:19:25 UTC

/bin/sh -c set -ex; 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; 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 postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y "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

2017-08-31 21:19:34 UTC

/bin/sh -c mv -v "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample" /usr/share/postgresql/ && 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

2017-08-31 21:19:37 UTC

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

2017-08-31 21:19:38 UTC

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

2017-08-31 21:19:39 UTC

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

2017-08-31 21:19:41 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2017-08-31 21:19:41 UTC

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

2017-08-31 21:19:42 UTC

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

2017-08-31 21:19:44 UTC

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

2017-08-31 21:19:45 UTC

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

2017-08-31 21:19:46 UTC

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

2017-08-31 21:19:47 UTC

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

Details
Created

2017-09-08 23:42:48 UTC

Size

109 MB

Content Digest
Environment
GOSU_VERSION

1.10

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_VERSION

10~beta4-1.pgdg90+1


Layers

[#000] sha256:61e2133fe2d7b94a36716e9a4c49c342905068f6defa9060a6b963354addd21c - 37.38% (40.9 MB)

[#001] sha256:71ae6dd2209912dda6ea265f36c70a03927a208e3e494a0cb3c2daf30959993e - 5.92% (6.48 MB)

[#002] sha256:bc1a71cf0444eecf839aa5ecd88be6b1466c0e3aee42c50752f88fe9f01b59f3 - 0.0% (1.71 KB)

[#003] sha256:d1be48186ad4c9ed0570acd0120ffd59e68e88665d84ac30617885946577e16c - 0.81% (903 KB)

[#004] sha256:fdcbf3422485c0875f736bfbed4d85e3c625640bf7885315ebe6b2c6dd70d0e2 - 5.73% (6.27 MB)

[#005] sha256:9b9f04cfeb59d5ff3d63f107d7f3e3598f98c79de96260986c5a9e5a70dbc94d - 0.0% (115 Bytes)

[#006] sha256:ebebe3df239885ae2fa0df0b7fa9fe90f68e1fdd6e48141bce4c72305190e789 - 0.0% (4.38 KB)

[#007] sha256:e6f9957749532ce4949d89dc8299ca183ca1a2a72d91bbef87b7b3957f8eea84 - 50.16% (54.9 MB)

[#008] sha256:ae1cfa90b6615c71f6147a5d534ba5e46e9eaece411185b23f5032a114f2e4b8 - 0.01% (7.13 KB)

[#009] sha256:25f160dbd02b5dcc74ddbf02618daf2870fd64a9efc737008877323ead4ba65a - 0.0% (129 Bytes)

[#010] sha256:39dae3e64dde3f9391b144be89ee9b93c2d07f85f06d85cebee13301a3e93b8b - 0.0% (169 Bytes)

[#011] sha256:c74bc70602bfd7f4fdd2eae9f800e078668565dd4d776923d6636e27f2f1a8cc - 0.0% (1.76 KB)

[#012] sha256:68a58dcc46d8de78a966da35d8b7f1c423868c1443413bfd576556483c406563 - 0.0% (121 Bytes)


History
2017-09-08 17:28:29 UTC

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

2017-09-08 17:28:30 UTC

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

2017-09-08 23:01:09 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg2 dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2017-09-08 23:01:12 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2017-09-08 23:01:13 UTC

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

2017-09-08 23:01:58 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-09-08 23:02:13 UTC

/bin/sh -c apt-get update && apt-get install -y 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

2017-09-08 23:02:14 UTC

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

2017-09-08 23:02:16 UTC

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

2017-09-08 23:02:27 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; rm -rf "$GNUPGHOME"; apt-key list

2017-09-08 23:02:28 UTC

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

2017-09-08 23:02:29 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10~beta4-1.pgdg90+1

2017-09-08 23:42:27 UTC

/bin/sh -c set -ex; 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; 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 postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y "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

2017-09-08 23:42:31 UTC

/bin/sh -c mv -v "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample" /usr/share/postgresql/ && 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

2017-09-08 23:42:33 UTC

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

2017-09-08 23:42:34 UTC

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

2017-09-08 23:42:35 UTC

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

2017-09-08 23:42:37 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2017-09-08 23:42:39 UTC

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

2017-09-08 23:42:40 UTC

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

2017-09-08 23:42:44 UTC

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

2017-09-08 23:42:45 UTC

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

2017-09-08 23:42:46 UTC

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

2017-09-08 23:42:48 UTC

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

Details
Created

2017-09-08 01:37:27 UTC

Size

112 MB

Content Digest
Environment
GOSU_VERSION

1.10

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_VERSION

10~beta4-1.pgdg90+1


Layers

[#000] sha256:97a7e851b7e2e26b94781e2f2bd23043fa46c09b45f0944d9ee2dfd81fa79762 - 38.63% (43.3 MB)

[#001] sha256:434a4a007450c537e63dad6313f1edbe51eeebdf126c57ef747c2e23633d0d11 - 6.03% (6.75 MB)

[#002] sha256:bf2e1d5217f48050b34179ec406c8ff448d48ac3676921a85e626cbbf1cbd7dd - 0.0% (1.7 KB)

[#003] sha256:64e891740016624996ab19eddb6232c0be782dccc528f229383f2cac0246ab5f - 0.79% (903 KB)

[#004] sha256:17f2debf94571cba7888c23d9911bd1d7f7743bbb26af334099055adcd8ddae7 - 5.6% (6.27 MB)

[#005] sha256:3c62a4a9689424fd7a8dce8fb5c567c9a8a7b6a14c64d5db52ea61896bc4c613 - 0.0% (147 Bytes)

[#006] sha256:d0a570988b508e0b1d9dd8b4c966d330699cffa977b1bb1e94dc4c965b2711ae - 0.0% (4.38 KB)

[#007] sha256:f0c106f0b44b7ab853c037ef279f0bb88dd83f244dc1fe310e31e3d75c995b1e - 48.94% (54.8 MB)

[#008] sha256:80b8505067b6f8ad23ae0ff1d0dc67c71a229ec17817c0d9086b45589b09edb3 - 0.01% (7.13 KB)

[#009] sha256:7c0d686bbf7fa1d5207fbc003182c7f7a7b5a11d8a53cd126954aaae1e6ecc1c - 0.0% (129 Bytes)

[#010] sha256:b65c41f4b1b9d84b602572036790e009697c32a0b381d065de737b618d3e6831 - 0.0% (200 Bytes)

[#011] sha256:ea643adef95084f73faa48cbac986af083403ee2cabb8e4cec53a87b975b52cc - 0.0% (1.76 KB)

[#012] sha256:ac2b4e00c25a3534d8758da7aea064cfef8419a73c1a7065557c636bc0e8619b - 0.0% (121 Bytes)


History
2017-09-08 00:34:09 UTC

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

2017-09-08 00:34:09 UTC

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

2017-09-08 01:35:56 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg2 dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2017-09-08 01:35:57 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2017-09-08 01:35:57 UTC

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

2017-09-08 01:36:39 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-09-08 01:36:45 UTC

/bin/sh -c apt-get update && apt-get install -y 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

2017-09-08 01:36:45 UTC

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

2017-09-08 01:36:45 UTC

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

2017-09-08 01:36:49 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; rm -rf "$GNUPGHOME"; apt-key list

2017-09-08 01:36:49 UTC

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

2017-09-08 01:36:49 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10~beta4-1.pgdg90+1

2017-09-08 01:37:23 UTC

/bin/sh -c set -ex; 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; 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 postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y "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

2017-09-08 01:37:24 UTC

/bin/sh -c mv -v "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample" /usr/share/postgresql/ && 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

2017-09-08 01:37:25 UTC

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

2017-09-08 01:37:25 UTC

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

2017-09-08 01:37:25 UTC

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

2017-09-08 01:37:26 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2017-09-08 01:37:26 UTC

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

2017-09-08 01:37:26 UTC

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

2017-09-08 01:37:27 UTC

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

2017-09-08 01:37:27 UTC

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

2017-09-08 01:37:27 UTC

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

2017-09-08 01:37:27 UTC

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

Details
Created

2017-09-08 06:25:48 UTC

Size

114 MB

Content Digest
Environment
GOSU_VERSION

1.10

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_VERSION

10~beta4-1.pgdg90+1


Layers

[#000] sha256:2f25bc6ba506d980514ec3fda2b8f9cbb5e39423e5e4edad7fadf3faa9e3aef7 - 37.57% (42.9 MB)

[#001] sha256:161c23052571a712217d5adc7b7d1f63b266bdc4888508a16cf49662873eab06 - 6.06% (6.91 MB)

[#002] sha256:1e811a1ff29709eb65ea2d5dd15fecb37331b63c1758c1e0b6333575971c996b - 0.0% (1.7 KB)

[#003] sha256:ea681979065c1d16e92895c9e519342835b5a712757a74bc38259751d371cb9b - 0.79% (920 KB)

[#004] sha256:912fe13ca5882af97c89434c5975b598e06eb3a8606829726dc0fc799c2aa9e8 - 5.51% (6.29 MB)

[#005] sha256:8a5146aace68c151e3f39b7a512357671fa62600770e45617087a7366d9fc6f5 - 0.0% (115 Bytes)

[#006] sha256:06684a6cc3df35879757d49b0fe4fc4b1b1c1f8acf3cba4eb626920280c0f67c - 0.0% (4.38 KB)

[#007] sha256:976b111c0df1599101089b74ca085d8adf645c88c8748400fdd271698ecd10e3 - 50.07% (57.2 MB)

[#008] sha256:2784f26546291256fca89a0a731498dd567ef2daeeb24d60b1653acb0654af90 - 0.01% (7.13 KB)

[#009] sha256:a2761b579332d73406f83a0cbeb08b8b8e720e59e48076a71ce480616b139eb7 - 0.0% (129 Bytes)

[#010] sha256:e228c8a7bf06c8baebd4cd4ed07f5c51ea1cb29a03e52c6f62ffc8db0b59a95d - 0.0% (171 Bytes)

[#011] sha256:a294713b1311f1d4554c30d83053d1de134fda794113c6bda517ccf3bb97de0a - 0.0% (1.76 KB)

[#012] sha256:0d42435330d3ed9237cf88086d7a14bc4da8c0305b65ab1b5f9edf00793aa95d - 0.0% (121 Bytes)


History
2017-09-08 05:22:51 UTC

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

2017-09-08 05:22:53 UTC

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

2017-09-08 06:16:25 UTC

/bin/sh -c set -ex; if ! command -v gpg > /dev/null; then apt-get update; apt-get install -y --no-install-recommends gnupg2 dirmngr ; rm -rf /var/lib/apt/lists/*; fi

2017-09-08 06:16:26 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2017-09-08 06:16:26 UTC

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

2017-09-08 06:16:37 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -rf "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2017-09-08 06:16:42 UTC

/bin/sh -c apt-get update && apt-get install -y 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

2017-09-08 06:16:42 UTC

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

2017-09-08 06:16:42 UTC

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

2017-09-08 06:16:46 UTC

/bin/sh -c set -ex; key='B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8'; export GNUPGHOME="$(mktemp -d)"; gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; gpg --export "$key" > /etc/apt/trusted.gpg.d/postgres.gpg; rm -rf "$GNUPGHOME"; apt-key list

2017-09-08 06:16:46 UTC

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

2017-09-08 06:16:47 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10~beta4-1.pgdg90+1

2017-09-08 06:25:45 UTC

/bin/sh -c set -ex; 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; 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 postgresql-common; sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf; apt-get install -y "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

2017-09-08 06:25:46 UTC

/bin/sh -c mv -v "/usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample" /usr/share/postgresql/ && 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

2017-09-08 06:25:46 UTC

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

2017-09-08 06:25:46 UTC

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

2017-09-08 06:25:46 UTC

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

2017-09-08 06:25:47 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2017-09-08 06:25:47 UTC

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

2017-09-08 06:25:47 UTC

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

2017-09-08 06:25:48 UTC

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

2017-09-08 06:25:48 UTC

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

2017-09-08 06:25:48 UTC

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

2017-09-08 06:25:48 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