Namespace
library
Image / Tag
postgres:10.8-alpine
Content Digest
sha256:3bb9237a58cdfbe3c720852675e5b37eca43ab96f79e261c648960c24a452e6d
Details
Created

2019-06-04 20:58:19 UTC

Size

27.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8


Layers

[#000] sha256:d0c434c0359e2da36b788ae4f5a3a70015d83ee20070aa412e714c7feecca465 - 9.68% (2.62 MB)

[#001] sha256:59abaccdd77df92face9cf6ca594b115a700cac27f4370b2dcd8b899c7dc4f80 - 0.0% (147 Bytes)

[#002] sha256:4c029f1d6b833217c736af0ee3c47a640c9f57eff8c528ba06458561ffbead18 - 0.0% (115 Bytes)

[#003] sha256:02eb1a8bc10e96c0154e879c03bf4cbb226a503475edc147e7df5fcc8fb7d90a - 90.28% (24.5 MB)

[#004] sha256:3fd1b07072e1ec554188054ae2aeb55cec190068edcaa34f4ec25ec68d048696 - 0.03% (7.13 KB)

[#005] sha256:271ad90b59127db6dc8e642ee7163148f8450db98e6e4a3c86673b4f07902f9a - 0.0% (127 Bytes)

[#006] sha256:5a6a33541abad770f015ca1b3a20e2bcdaa0909f7aeaaa9747d8a16beb080668 - 0.0% (168 Bytes)

[#007] sha256:c8819907ff4effd7368f2fd106df5576d28f3899a28e9cd3e6799bfb26f9ff12 - 0.01% (2.31 KB)

[#008] sha256:eb010ce52414eb504187fe550024f09421edbb54fcae4603a219e225d0e817ce - 0.0% (117 Bytes)


History
2019-05-11 10:39:25 UTC

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

2019-05-11 10:39:25 UTC

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

2019-05-11 15:31:36 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-05-11 15:31:36 UTC

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

2019-05-11 15:31:37 UTC

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

2019-05-11 15:35:07 UTC

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

2019-05-11 15:35:08 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.8

2019-05-11 15:35:08 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

2019-06-04 20:58:15 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-06-04 20:58:16 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-06-04 20:58:16 UTC

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

2019-06-04 20:58:16 UTC

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

2019-06-04 20:58:17 UTC

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

2019-06-04 20:58:17 UTC

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

2019-06-04 20:58:18 UTC

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

2019-06-04 20:58:18 UTC

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

2019-06-04 20:58:19 UTC

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

2019-06-04 20:58:19 UTC

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

2019-06-04 20:58:19 UTC

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

Details
Created

2019-06-04 20:37:45 UTC

Size

26.3 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8


Layers

[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 9.99% (2.63 MB)

[#001] sha256:ddab92d60ba90017f12dd42d606551d002a5a0cc09be31e16105925cbfa07481 - 0.0% (147 Bytes)

[#002] sha256:8c4b0e7b82b8e1bdf8e5908b08113fb98ab570336a917e5d207ad5e84130cea9 - 0.0% (115 Bytes)

[#003] sha256:1241ee300dd79fb02dc653243deb12e3f87f2d4bce787cb1a3e880a3d44b05ca - 89.97% (23.7 MB)

[#004] sha256:8b19e293c1b639e1b92b9164c2270d9513a77a114d4138739a470a9385cf435b - 0.03% (7.13 KB)

[#005] sha256:f3fc4a6aefa8d4ddcccb952275ac2eb35a66a71dc46fc5c690364a23abdd3685 - 0.0% (130 Bytes)

[#006] sha256:b35e09974eb5ec4bd6c8285d3909d90cd552b74b66ff3bd874abe038af37ec54 - 0.0% (173 Bytes)

[#007] sha256:a1c8c0a60cc9a825b939d730b25e668d1862ffda6df6ae896a519041027ab6ee - 0.01% (2.32 KB)

[#008] sha256:b53dfb9d9a640873f31fd09dff88a9a7e8b16293781faa352d682206432d180d - 0.0% (121 Bytes)


History
2019-05-11 00:07:03 UTC

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

2019-05-11 00:07:03 UTC

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

2019-05-11 02:43:44 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-05-11 02:43:44 UTC

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

2019-05-11 02:43:45 UTC

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

2019-05-11 02:50:04 UTC

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

2019-05-11 02:50:04 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.8

2019-05-11 02:50:05 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

2019-06-04 20:37:38 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-06-04 20:37:40 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-06-04 20:37:41 UTC

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

2019-06-04 20:37:41 UTC

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

2019-06-04 20:37:42 UTC

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

2019-06-04 20:37:42 UTC

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

2019-06-04 20:37:43 UTC

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

2019-06-04 20:37:44 UTC

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

2019-06-04 20:37:44 UTC

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

2019-06-04 20:37:44 UTC

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

2019-06-04 20:37:45 UTC

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

Details
Created

2019-06-04 20:57:36 UTC

Size

25.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8


Layers

[#000] sha256:6e39823df636e42cc4ea056843af98c9bec31b5ae0a75cdc5628cd19b589189c - 9.54% (2.43 MB)

[#001] sha256:a40067f00f6272b4ee3ced6fe442909565af7511237b288ac04f07ec071b2e27 - 0.0% (177 Bytes)

[#002] sha256:ff4e59b89070cb7c3fb445d9f3f2461a0ca2fae91eb7f2a68888de988c23af3e - 0.0% (149 Bytes)

[#003] sha256:ef09df4adbfb0de191b74da53a9ef1112275007422d686743cd6bec5557120bf - 90.42% (23 MB)

[#004] sha256:2d8b328dfc10011bb393a5cf733b87ba6fc2724b1811574fb687b8046e4feece - 0.03% (7.13 KB)

[#005] sha256:7472b9036fba2a2115fcfd12a4c92b0a353b2a876c69b2042eb9d1905ed7f364 - 0.0% (161 Bytes)

[#006] sha256:69fb62e367347b8662f390080309bca6959a0832be2af3e91ab4a05b0651a29f - 0.0% (201 Bytes)

[#007] sha256:48ba8dde91330bd74fc81e10abb4eb1d3d350d4369bc5eb9805470279e8dd809 - 0.01% (2.32 KB)

[#008] sha256:c836e18b0654d7f1869e7d184bb4af4a245762b0d2f6d8c2693629e91859d040 - 0.0% (121 Bytes)


History
2019-05-11 07:49:31 UTC

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

2019-05-11 07:49:31 UTC

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

2019-05-11 09:00:48 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-05-11 09:00:49 UTC

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

2019-05-11 09:00:50 UTC

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

2019-05-11 09:03:03 UTC

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

2019-05-11 09:03:03 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.8

2019-05-11 09:03:04 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

2019-06-04 20:57:25 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-06-04 20:57:27 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-06-04 20:57:29 UTC

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

2019-06-04 20:57:30 UTC

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

2019-06-04 20:57:31 UTC

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

2019-06-04 20:57:32 UTC

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

2019-06-04 20:57:33 UTC

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

2019-06-04 20:57:35 UTC

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

2019-06-04 20:57:35 UTC

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

2019-06-04 20:57:35 UTC

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

2019-06-04 20:57:36 UTC

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

Details
Created

2019-06-04 21:37:00 UTC

Size

24.5 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8


Layers

[#000] sha256:856f4240f8dba160c5323506c1e9a4dbaaca840bf1b0c244af3b8d1b42b0f43b - 9.16% (2.24 MB)

[#001] sha256:f75ddb9311b604ba4812721c497434892efb88706cc9aebdd3e3e84b5e1133b2 - 0.0% (178 Bytes)

[#002] sha256:e6360535493a3ecaf4b471443cd23c3ec46c6594f3a0961f44368f47e0a39b39 - 0.0% (149 Bytes)

[#003] sha256:cbb797153131342e93fd23e278dcbc65de8667e481a6a5220751b73b8831f103 - 90.8% (22.2 MB)

[#004] sha256:45898c17067be9147d608ee48331fa518ed1f69b555f92e111bd2d0e6072af52 - 0.03% (7.13 KB)

[#005] sha256:3dd7e9418101f925aab0c0ea35ef5976fb10d80cb5d97554a7c63485980ce5a4 - 0.0% (163 Bytes)

[#006] sha256:baa53dc3343092bd9f9dda1f11882a606dfcba858845984672403059eee4a3ea - 0.0% (200 Bytes)

[#007] sha256:5170c50dda595ea1dc93457f520fca102ab9dc39481ff3e201c7c2bde554ad6f - 0.01% (2.31 KB)

[#008] sha256:5be18493582aaeee918828a0dc877f10631aacfc72706b4d21e4fe820f2c7713 - 0.0% (121 Bytes)


History
2019-05-11 11:57:33 UTC

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

2019-05-11 11:57:34 UTC

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

2019-05-11 12:56:11 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-05-11 12:56:11 UTC

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

2019-05-11 12:56:13 UTC

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

2019-05-11 12:58:27 UTC

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

2019-05-11 12:58:27 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.8

2019-05-11 12:58:28 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

2019-06-04 21:36:51 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-06-04 21:36:53 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-06-04 21:36:54 UTC

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

2019-06-04 21:36:55 UTC

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

2019-06-04 21:36:56 UTC

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

2019-06-04 21:36:57 UTC

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

2019-06-04 21:36:57 UTC

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

2019-06-04 21:36:59 UTC

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

2019-06-04 21:36:59 UTC

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

2019-06-04 21:37:00 UTC

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

2019-06-04 21:37:00 UTC

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

Details
Created

2019-06-19 23:22:20 UTC

Size

26.2 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8


Layers

[#000] sha256:0362ad1dd800a9d92f8982fa28f173f9120266153830f990f7486f44b068968a - 9.79% (2.56 MB)

[#001] sha256:288d38dc2b23a4921b8bada77743a7e933f727a406509d08754562d18d126202 - 0.0% (180 Bytes)

[#002] sha256:97d1446b106edbf3122d9cd59e3b6b5b1769b2a10844f1f056203d77434548f8 - 0.0% (149 Bytes)

[#003] sha256:ebe6276d75d2af4fff3c3e140a844e10de06c5e9190d5672c03f956ebfc0d926 - 90.17% (23.6 MB)

[#004] sha256:93456aced5690fea5df91bb061d20a399535f8e20fcf773880e9f54abb66ae5a - 0.03% (7.13 KB)

[#005] sha256:0fd9c0e45f0715e2fdbc929d543db16fb71ee67180b2a30c0c7c6a4f54b4844d - 0.0% (162 Bytes)

[#006] sha256:506697c237cdbf82823e9168a240609c6e012d555e4c4c29cdd537c75dbe6419 - 0.0% (201 Bytes)

[#007] sha256:2b9d4cc9715d494b8447129e28bc4ffb958dfc90a710a0d326e704ac3cf7a950 - 0.01% (2.31 KB)

[#008] sha256:7d30cafaa215e738d8a112381296a88132e6792b471b5e8ff2c527311f495f05 - 0.0% (121 Bytes)


History
2019-06-19 20:39:47 UTC

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

2019-06-19 20:39:47 UTC

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

2019-06-19 23:13:56 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-06-19 23:13:57 UTC

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

2019-06-19 23:13:58 UTC

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

2019-06-19 23:19:33 UTC

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

2019-06-19 23:19:33 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.8

2019-06-19 23:19:34 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

2019-06-19 23:22:08 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-06-19 23:22:11 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-06-19 23:22:13 UTC

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

2019-06-19 23:22:14 UTC

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

2019-06-19 23:22:15 UTC

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

2019-06-19 23:22:16 UTC

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

2019-06-19 23:22:16 UTC

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

2019-06-19 23:22:18 UTC

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

2019-06-19 23:22:19 UTC

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

2019-06-19 23:22:19 UTC

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

2019-06-19 23:22:20 UTC

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

Details
Created

2019-06-19 23:49:44 UTC

Size

27.5 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8


Layers

[#000] sha256:221c32b360a801e69a8aac598d495aaac3512642f967704a9d9bc5d6b4b4709e - 9.63% (2.65 MB)

[#001] sha256:46b81a6a0d9bdf3b207768607b99415b72d93b6d489c64f096adc23bdc98d100 - 0.0% (181 Bytes)

[#002] sha256:1b444c3b4819f42a3724ec08b289ae13829a9a97e8342c12d48a849fa4b335c9 - 0.0% (149 Bytes)

[#003] sha256:306dff306e812919b816dddc1337c85115cf5a758b3c96b0c76231471fae9e6c - 90.33% (24.9 MB)

[#004] sha256:da47b04d63c39cc223d01bdb6c6705da8db45bdddb79791e3c620457b39033be - 0.03% (7.13 KB)

[#005] sha256:eaa4c895544ca84312f6c889b2b7153d42b5e9bb974f81a71f0ca7ff5a55f25f - 0.0% (160 Bytes)

[#006] sha256:006d02c7282e23f1db900129a7a9f590331e2d28a77784b0c1c8c7e8f94c6482 - 0.0% (201 Bytes)

[#007] sha256:33c412ef3c09d42bd3130fcb52db791e9652b7788eb5575b0e8508acf93e8be3 - 0.01% (2.32 KB)

[#008] sha256:1579288a2dc12143ac37667fb59603b6f80833beda2c724aab547fbad33f348e - 0.0% (121 Bytes)


History
2019-06-19 21:20:35 UTC

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

2019-06-19 21:20:36 UTC

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

2019-06-19 23:37:18 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-06-19 23:37:20 UTC

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

2019-06-19 23:37:26 UTC

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

2019-06-19 23:46:01 UTC

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

2019-06-19 23:46:04 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.8

2019-06-19 23:46:07 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

2019-06-19 23:49:12 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-06-19 23:49:19 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-06-19 23:49:24 UTC

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

2019-06-19 23:49:26 UTC

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

2019-06-19 23:49:31 UTC

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

2019-06-19 23:49:33 UTC

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

2019-06-19 23:49:34 UTC

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

2019-06-19 23:49:37 UTC

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

2019-06-19 23:49:40 UTC

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

2019-06-19 23:49:41 UTC

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

2019-06-19 23:49:44 UTC

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

Details
Created

2019-06-04 21:06:56 UTC

Size

26.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

PG_VERSION

10.8


Layers

[#000] sha256:bea4f04d8b33c5bd68ccb34849e615333c5ef00958b400841a03970dd2d5e9ae - 9.29% (2.43 MB)

[#001] sha256:4865e585d61883382119870b39920229ec382dca0843f11998783168258af442 - 0.0% (147 Bytes)

[#002] sha256:21c4e1be2dab7e661d079ba60d96b75dbcbe44cd537c296f2ec882fb915438c5 - 0.0% (115 Bytes)

[#003] sha256:c471f38a6dd62b4d439ada8725b62c3b08a44b7314601e9576979030c2fa1099 - 90.67% (23.7 MB)

[#004] sha256:b12146b35b5d0ccb28f07d75405f50b4d5bd031c91b0cd226cd06ed7a2de0656 - 0.03% (7.13 KB)

[#005] sha256:ac8c670f684cc000249c26923662e4609084800ab52c6108515b6de9b21ab8be - 0.0% (129 Bytes)

[#006] sha256:1755e4e6f7126190acdb66135883edfcf901fa106dbd2b3cbba0f252f31fdad0 - 0.0% (167 Bytes)

[#007] sha256:dc91b06196c007103c3d30ff7cd9ba2998665cb35d32833ea903c84ef347b0a3 - 0.01% (2.31 KB)

[#008] sha256:b81c19338cfd477dfdccfc6bc739d3029298f4707125e970b339eeae89266bf4 - 0.0% (121 Bytes)


History
2019-05-11 11:41:43 UTC

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

2019-05-11 11:41:43 UTC

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

2019-05-11 12:26:28 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-05-11 12:26:29 UTC

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

2019-05-11 12:26:30 UTC

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

2019-05-11 12:30:39 UTC

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

2019-05-11 12:30:39 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.8

2019-05-11 12:30:39 UTC

/bin/sh -c #(nop) ENV PG_SHA256=b198c2aadf1d68308127a0f5b51dbe798958ffe60dd999134f6495c489afcd5d

2019-06-04 21:06:51 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-06-04 21:06:52 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-06-04 21:06:53 UTC

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

2019-06-04 21:06:53 UTC

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

2019-06-04 21:06:54 UTC

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

2019-06-04 21:06:54 UTC

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

2019-06-04 21:06:54 UTC

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

2019-06-04 21:06:55 UTC

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

2019-06-04 21:06:55 UTC

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

2019-06-04 21:06:56 UTC

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

2019-06-04 21:06:56 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