2019-06-04 21:04:29 UTC
14.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA25688f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
PG_VERSION9.5.17
[#000] sha256:d0c434c0359e2da36b788ae4f5a3a70015d83ee20070aa412e714c7feecca465 - 18.66% (2.62 MB)
[#001] sha256:59abaccdd77df92face9cf6ca594b115a700cac27f4370b2dcd8b899c7dc4f80 - 0.0% (147 Bytes)
[#002] sha256:4c029f1d6b833217c736af0ee3c47a640c9f57eff8c528ba06458561ffbead18 - 0.0% (115 Bytes)
[#003] sha256:9978b1a2a092ba5106218a20a68e60195050c95fbd69144b145f5264b41b4288 - 81.27% (11.4 MB)
[#004] sha256:5b2693e9bb20b17df5b05177f3aed2e73a841f263d285d26f877bbdf22ed3ab9 - 0.05% (6.67 KB)
[#005] sha256:e41049a0e770ce1aa53fac1f511f4a0a6d0c2d43e30a6ea52ca74723d2061491 - 0.0% (129 Bytes)
[#006] sha256:0867f829baf28effbf2d50175ce6f76932dc8e87b53b75c118aea456c82e62ee - 0.0% (171 Bytes)
[#007] sha256:88ada3dbb280fb49cb2a4381af53937f90197d9b2eb1dac6e81d7229e4a34e90 - 0.02% (2.32 KB)
[#008] sha256:3987d01ca52d87b78e4cbe8453ae338b68f7c4b9e3dd5e40f99f35bb381773ff - 0.0% (121 Bytes)
/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:41:56 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-05-11 15:41:56 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.17
2019-05-11 15:41:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=88f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
2019-06-04 21:04: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 && 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 && 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:04:26 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-06-04 21:04:27 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:04:27 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-06-04 21:04:28 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-06-04 21:04:28 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-06-04 21:04:28 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-06-04 21:04:29 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-06-04 21:04:29 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-06-04 21:04:29 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-06-04 21:04:29 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-06-04 20:51:23 UTC
13.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA25688f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
PG_VERSION9.5.17
[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 19.47% (2.63 MB)
[#001] sha256:ddab92d60ba90017f12dd42d606551d002a5a0cc09be31e16105925cbfa07481 - 0.0% (147 Bytes)
[#002] sha256:8c4b0e7b82b8e1bdf8e5908b08113fb98ab570336a917e5d207ad5e84130cea9 - 0.0% (115 Bytes)
[#003] sha256:78db863807013c2880add222fbbb6c4816964e96a19b8c618dd46ef095f622f0 - 80.46% (10.9 MB)
[#004] sha256:498b9f55f4a2e5a2d59bd3f8e7089687fe5390ed66aa6172158372466cd8d90d - 0.05% (6.67 KB)
[#005] sha256:b6ef33810ac4b8076c8086d73d7728a8b46683fe7cd2e518192a2f8e6b8e3d85 - 0.0% (131 Bytes)
[#006] sha256:7b777e34b0cc2ae30de264716b6393c4fc4cd61739451d52bd53e9e0bf677488 - 0.0% (170 Bytes)
[#007] sha256:fffee4ff530657a90c6129c3be38951e4780a08d1f025b7a2ed891902f064902 - 0.02% (2.32 KB)
[#008] sha256:ffeac685b0a1ccd706f7625f397f39684760d827b6939f7e26b241c487be8147 - 0.0% (121 Bytes)
/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 03:01:12 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-05-11 03:01:13 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.17
2019-05-11 03:01:13 UTC/bin/sh -c #(nop) ENV PG_SHA256=88f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
2019-06-04 20:51:17 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 && 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 && 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:51:17 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-06-04 20:51:18 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:51:19 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-06-04 20:51:20 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-06-04 20:51:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-06-04 20:51:21 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-06-04 20:51:22 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-06-04 20:51:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-06-04 20:51:23 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-06-04 20:51:23 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-06-04 21:03:39 UTC
12.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA25688f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
PG_VERSION9.5.17
[#000] sha256:6e39823df636e42cc4ea056843af98c9bec31b5ae0a75cdc5628cd19b589189c - 18.81% (2.43 MB)
[#001] sha256:a40067f00f6272b4ee3ced6fe442909565af7511237b288ac04f07ec071b2e27 - 0.0% (177 Bytes)
[#002] sha256:ff4e59b89070cb7c3fb445d9f3f2461a0ca2fae91eb7f2a68888de988c23af3e - 0.0% (149 Bytes)
[#003] sha256:1ba51a289f154b59c8f9af459e7aa2450c4008884c645acbe473949ae7d86820 - 81.12% (10.5 MB)
[#004] sha256:cc2799338631fe4196651c27bb3605c8f9b05f30d307df4537e34fc806e96907 - 0.05% (6.67 KB)
[#005] sha256:d87e100055a4ebc0d9138467996a6d2652d22adb54ef37b9bb1f8fc7ab5fd9d0 - 0.0% (163 Bytes)
[#006] sha256:a8c54e55c4b1b73e37bb2082fcfd2496043d621c1bf55b32a3c59ee8d537ca53 - 0.0% (201 Bytes)
[#007] sha256:2324ea7ca8ae35daf9d56d64cef2a8bdf1f26d591b7a365376a23e4cd13d4354 - 0.02% (2.31 KB)
[#008] sha256:0c891d39e89ad90a0445065f47d80e9e6c7ab944e3f19b4a9dd07242a358ca83 - 0.0% (121 Bytes)
/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:07:03 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-05-11 09:07:04 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.17
2019-05-11 09:07:04 UTC/bin/sh -c #(nop) ENV PG_SHA256=88f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
2019-06-04 21:03:29 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 && 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 && 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:03:31 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-06-04 21:03:32 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:03:33 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-06-04 21:03:35 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-06-04 21:03:35 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-06-04 21:03:36 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-06-04 21:03:38 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-06-04 21:03:38 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-06-04 21:03:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-06-04 21:03:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-06-04 21:41:39 UTC
12.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA25688f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
PG_VERSION9.5.17
[#000] sha256:856f4240f8dba160c5323506c1e9a4dbaaca840bf1b0c244af3b8d1b42b0f43b - 18.5% (2.24 MB)
[#001] sha256:f75ddb9311b604ba4812721c497434892efb88706cc9aebdd3e3e84b5e1133b2 - 0.0% (178 Bytes)
[#002] sha256:e6360535493a3ecaf4b471443cd23c3ec46c6594f3a0961f44368f47e0a39b39 - 0.0% (149 Bytes)
[#003] sha256:f4e318d7fd149e38ec3c7ca42836f60a381a0a6562934aab94a65f291bf92a75 - 81.43% (9.87 MB)
[#004] sha256:146cda85f58d6b3c710ba5cc37ce1b35db1aff9f7ec2bb15d5b591b56f39b3a0 - 0.05% (6.67 KB)
[#005] sha256:19a0d1c2c6a3bd783e8dd4bb167cd83f7fbf5bf6944bf44adff8f939c9310d40 - 0.0% (161 Bytes)
[#006] sha256:082bde99d508e55f84098a46cc71c72675970a92c4798cc000e38a74f2fdbdb6 - 0.0% (201 Bytes)
[#007] sha256:797b2071aa71b1e00f9c9cc229b86643f9dce8c1bc29294f9a8a8d4f9d4b1887 - 0.02% (2.32 KB)
[#008] sha256:a5a8ad1a4e048786148efb76d02ee11bff88e716afc33fb484efc4b9f948e0cb - 0.0% (121 Bytes)
/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 13:03:21 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-05-11 13:03:21 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.17
2019-05-11 13:03:22 UTC/bin/sh -c #(nop) ENV PG_SHA256=88f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
2019-06-04 21:41:28 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 && 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 && 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:41:30 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-06-04 21:41:32 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:41:32 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-06-04 21:41:34 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-06-04 21:41:34 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-06-04 21:41:35 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-06-04 21:41:37 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-06-04 21:41:38 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-06-04 21:41:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-06-04 21:41:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-06-19 23:27:42 UTC
13.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA25688f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
PG_VERSION9.5.17
[#000] sha256:0362ad1dd800a9d92f8982fa28f173f9120266153830f990f7486f44b068968a - 19.2% (2.56 MB)
[#001] sha256:288d38dc2b23a4921b8bada77743a7e933f727a406509d08754562d18d126202 - 0.0% (180 Bytes)
[#002] sha256:97d1446b106edbf3122d9cd59e3b6b5b1769b2a10844f1f056203d77434548f8 - 0.0% (149 Bytes)
[#003] sha256:1b68e7fe9fdcbd494e9c7906a29c24f4a81a8b3169310f729afd2a3f94b067a9 - 80.73% (10.8 MB)
[#004] sha256:8f908faa24da59d398eef2c78032486a3ab1b6e9e3a9cdb686b7e8fdfb97ea15 - 0.05% (6.67 KB)
[#005] sha256:eaa421780d74c772823dc50426fa82bcef28639af68756fe7ae1e4c5d7be91bb - 0.0% (161 Bytes)
[#006] sha256:64570c27af20fc96b7b3b980acedf1d4abf65c788a05072d0e24324e62926b64 - 0.0% (201 Bytes)
[#007] sha256:15892cce76c544b3818d19d45422bc9d4ed3bb8a03487ea229b392c546cc8538 - 0.02% (2.32 KB)
[#008] sha256:20b75773645a4db6c3131d67f5b37ab7b440dcc7115b7f0fffa94f6e091ae92b - 0.0% (121 Bytes)
/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:25:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-06-19 23:25:29 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.17
2019-06-19 23:25:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=88f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
2019-06-19 23:27:34 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 && 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 && 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:27:36 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-06-19 23:27:37 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:27:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-06-19 23:27:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-06-19 23:27:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-06-19 23:27:39 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-06-19 23:27:41 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-06-19 23:27:42 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-06-19 23:27:42 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-06-19 23:27:42 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-06-19 23:57:34 UTC
14.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA25688f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
PG_VERSION9.5.17
[#000] sha256:221c32b360a801e69a8aac598d495aaac3512642f967704a9d9bc5d6b4b4709e - 18.23% (2.65 MB)
[#001] sha256:46b81a6a0d9bdf3b207768607b99415b72d93b6d489c64f096adc23bdc98d100 - 0.0% (181 Bytes)
[#002] sha256:1b444c3b4819f42a3724ec08b289ae13829a9a97e8342c12d48a849fa4b335c9 - 0.0% (149 Bytes)
[#003] sha256:0bbcc1f9e4f43a8590579c563fc735116db28ed89f85820ef53a44c2baf75fff - 81.71% (11.9 MB)
[#004] sha256:8524e0b2fd8a9ab2c105ef3fb8c2b106dc4e914e9d11f6448295533d86a0027b - 0.04% (6.66 KB)
[#005] sha256:01271c15c8bf6f469b0dfb4dea0fdab46bdf7036dadefb08244b8831ee33cf3c - 0.0% (161 Bytes)
[#006] sha256:70e1594c58515d550d5909b78ba1978442473b1fd4c8bf6d638e447a8f1d2e3f - 0.0% (201 Bytes)
[#007] sha256:0fcf67d343b289584e56aca0156f74eac89e55076732da1df84196544b3cfaa1 - 0.02% (2.32 KB)
[#008] sha256:900e37213345648fbacd64e417e2a34c68ded47238dee38252dbbcc9fca51647 - 0.0% (121 Bytes)
/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:54:05 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-06-19 23:54:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.17
2019-06-19 23:54:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=88f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
2019-06-19 23:56:55 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 && 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 && 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:57:01 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-06-19 23:57:08 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:57:11 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-06-19 23:57:15 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-06-19 23:57:18 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-06-19 23:57:19 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-06-19 23:57:24 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-06-19 23:57:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-06-19 23:57:30 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-06-19 23:57:34 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-06-04 21:13:04 UTC
13.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA25688f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
PG_VERSION9.5.17
[#000] sha256:bea4f04d8b33c5bd68ccb34849e615333c5ef00958b400841a03970dd2d5e9ae - 18.41% (2.43 MB)
[#001] sha256:4865e585d61883382119870b39920229ec382dca0843f11998783168258af442 - 0.0% (147 Bytes)
[#002] sha256:21c4e1be2dab7e661d079ba60d96b75dbcbe44cd537c296f2ec882fb915438c5 - 0.0% (115 Bytes)
[#003] sha256:314e9d71f308675760c33fdf42ea5273193a06bd9d40414ca9490ed249b36b15 - 81.52% (10.7 MB)
[#004] sha256:84f736774620d3775921ec4bdf05ee8661640df7a2724fc478525403fa4aefc5 - 0.05% (6.67 KB)
[#005] sha256:f3f3f4e08028fae4af5cdae57df26fe38bbe5096468903f85f54a35af5098c42 - 0.0% (129 Bytes)
[#006] sha256:2200f56dc7f13ed863e0dbfb85a50897f44559df7387debf7438bc3640c74fdc - 0.0% (168 Bytes)
[#007] sha256:51f88d2797de3ca414b3e78850fe18e9d7d5fcdb7bca9bcc5122ad80ab1408bb - 0.02% (2.32 KB)
[#008] sha256:4e9780cd4d4c4616cb0e0cce3722328d6ca5a41c063cdbfdfd78b69eb560d7c8 - 0.0% (121 Bytes)
/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:39:00 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-05-11 12:39:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.17
2019-05-11 12:39:01 UTC/bin/sh -c #(nop) ENV PG_SHA256=88f9e37a0069f2fd4442d1d0d5d811d3121cac685514435b0248d0674723f705
2019-06-04 21:12:59 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 && 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 && 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:12:59 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-06-04 21:13:00 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:13:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-06-04 21:13:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-06-04 21:13:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-06-04 21:13:02 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-06-04 21:13:03 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-06-04 21:13:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-06-04 21:13:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-06-04 21:13:04 UTC/bin/sh -c #(nop) CMD ["postgres"]
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.