2020-04-24 08:28:04 UTC
14.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.6
PG_SHA256f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
PG_VERSION9.6.17
[#000] sha256:2826c1e79865da7e0da0a993a2a38db61c3911e05b5df617439a86d4deac90fb - 18.92% (2.68 MB)
[#001] sha256:a40ec1727ae78424ec003d6b3506985950e6d173ecedacfc6d96b4803ec3fd24 - 0.01% (1.22 KB)
[#002] sha256:adaab1850ecb85cd8d44baa5bb4784f13183b1419bc09a56384105985dd11a45 - 0.0% (115 Bytes)
[#003] sha256:67b76dfa8c0e91bcba778b1e8c57d1c70172ec9accf010bfef54d9a953d54677 - 81.0% (11.5 MB)
[#004] sha256:63df50a5bff913fb3cd6d7047e85b0747b62d8fbf8dfffce816c6de2eac458c3 - 0.05% (6.99 KB)
[#005] sha256:71e15b1b046b064e069342c17a7d6872cbbe04ea253af94f5616438763a08cca - 0.0% (128 Bytes)
[#006] sha256:07915275aed8cf0377bce5bff96c0acfe9b5bfab350c4b66ee32ee8a80169cc9 - 0.0% (164 Bytes)
[#007] sha256:6b3c0e641f2568289a33b7057407442327afab61c6bbae70cd7d5feeb5c7834d - 0.03% (4.16 KB)
[#008] sha256:ddd328ab45736f778e2f1c0c9d5d2427fd1b0a12cb94250b3fd6a33d43811949 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:63bd8a316cba8c404cc2e32a5120406c24aee8db3224c469a6077b941d900863 in /
2020-04-23 21:16:04 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 08:04:33 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-04-24 08:04:33 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 08:04:34 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 08:24:29 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2020-04-24 08:24:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.17
2020-04-24 08:24:30 UTC/bin/sh -c #(nop) ENV PG_SHA256=f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
2020-04-24 08:28:00 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
2020-04-24 08:28:00 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 08:28:01 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 08:28:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 08:28:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 08:28:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 08:28:03 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-04-24 08:28:03 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-04-24 08:28:04 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 08:28:04 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 08:28:04 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-24 17:29:08 UTC
13.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.6
PG_SHA256f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
PG_VERSION9.6.17
[#000] sha256:cbdbe7a5bc2a134ca8ec91be58565ec07d037386d1f1d8385412d224deafca08 - 19.77% (2.68 MB)
[#001] sha256:b52a8a2ca21a6b2f35ce4b89cf728e4fa7d53206b2a18ab3fa1a285e0bfe4726 - 0.01% (1.22 KB)
[#002] sha256:e36a19831e31f1aa75ef228b7a788b936a99bd97f74d7a6967e4379bd807d680 - 0.0% (115 Bytes)
[#003] sha256:9e78cc7ff33472d011a12ea01899d761aaadf99287a8235bf0022dae7bb989e0 - 80.13% (10.9 MB)
[#004] sha256:2e90d39e4948ef635ac42b35976792126425ba42b513d60e37d095571d2da427 - 0.05% (6.99 KB)
[#005] sha256:9a3d698e123a0876749d2ad0c97266b4f714eac841e1a45d1cbeaeaf0c9e1269 - 0.0% (130 Bytes)
[#006] sha256:f9855f4bfed52ce6367adfa67830380d6ebe7cfde65e39d386c949de4d36988c - 0.0% (164 Bytes)
[#007] sha256:4da4790e26312e5247ec293e5e8e0703b9761bf3a2d5fe97030e962e43491d5f - 0.03% (4.16 KB)
[#008] sha256:d0f971fb23fb4b147606578f7b7967345a4d6bcee6ca35afb61b371098aa4575 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:b91adb67b670d3a6ff9463e48b7def903ed516be66fc4282d22c53e41512be49 in /
2020-04-24 01:05:03 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 17:11:48 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-04-24 17:11:48 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 17:11:49 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 17:26:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2020-04-24 17:26:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.17
2020-04-24 17:26:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
2020-04-24 17:29:04 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
2020-04-24 17:29:05 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 17:29:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 17:29:06 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 17:29:07 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 17:29:07 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 17:29:07 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-04-24 17:29:08 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-04-24 17:29:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 17:29:08 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 17:29:08 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-23 20:13:34 UTC
13 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
PG_VERSION9.6.17
[#000] sha256:b9e3228833e92f0688e0f87234e75965e62e47cfbb9ca8cc5fa19c2e7cd13f80 - 19.24% (2.5 MB)
[#001] sha256:2a0fe18342defa413ae03aef3e0942cb59be0cd23d148c8f00345d83bdd3caf9 - 0.01% (1.24 KB)
[#002] sha256:1dd53a6698d4905175d063c44335ca7e40d621093d6a69b00b07a084b41811b6 - 0.0% (149 Bytes)
[#003] sha256:f53cc4894a112c4417e8775a8b7b423ad4ed452cfb2130bba83f165259b84315 - 80.66% (10.5 MB)
[#004] sha256:aee6c38e3a8932fe6902c2855a2a47f3a07c065018b7820a68e35ddfa36bbfa4 - 0.05% (6.99 KB)
[#005] sha256:ace0ff087b2e63274fc60224145b4b6e3d179916b50f11c4eaee729514fd329c - 0.0% (161 Bytes)
[#006] sha256:15e7f36977ac54b3120d044160d1d4180a7b6a8d59dc5d56bb17202d4ef8926a - 0.0% (194 Bytes)
[#007] sha256:98e3c48c44f051f76b9284357b5f4c8c6a54d241bf3e492fa0e0934fbbf938c6 - 0.03% (4.16 KB)
[#008] sha256:b3ce6849350c303ab644ef28f363de08673a788809ea1a1db9ca788267ec6342 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:cc0770cddff6b50d5e31f39886420eb8a0b4af55664d6f7599207c9aeaf6a501 in /
2020-04-23 15:51:25 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-23 19:57:11 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-04-23 19:57:12 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-23 19:57:14 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-23 20:10:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2020-04-23 20:10:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.17
2020-04-23 20:10:47 UTC/bin/sh -c #(nop) ENV PG_SHA256=f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
2020-04-23 20:13:20 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
2020-04-23 20:13:22 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-23 20:13:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-23 20:13:26 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-23 20:13:28 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-23 20:13:29 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-23 20:13:30 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-04-23 20:13:32 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-04-23 20:13:33 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-23 20:13:33 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-23 20:13:34 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-24 08:45:29 UTC
12.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.6
PG_SHA256f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
PG_VERSION9.6.17
[#000] sha256:3cfb62949d9d8613854db4d5fe502a9219c2b55a153043500078a64e880ae234 - 18.95% (2.31 MB)
[#001] sha256:92d4bbcefb265020b323ff09da302c8b4ee3db8f6da7d0de3d3ea655798ff865 - 0.01% (1.25 KB)
[#002] sha256:98e53cbfc4447cbfa4e0f492480f510e5bac84d1397e9f66a8dc7a57186a7772 - 0.0% (149 Bytes)
[#003] sha256:ae5057102f5df0c4c2666f86bdf755be874c7e721e92f2064b456a69958ecdf7 - 80.95% (9.87 MB)
[#004] sha256:0c50bac03c9deafd779b7735d90c57af536ca25688f37b64aa3d10a433187616 - 0.06% (6.99 KB)
[#005] sha256:11eae4132232ef3b283cec76c69a0cd2d358036ad5c2e0806349af5eabc19551 - 0.0% (162 Bytes)
[#006] sha256:4d78f6d1d0b22240bef6f7bd8a8e3b68774675ba3cf24334b4da86ca4e1be2d4 - 0.0% (195 Bytes)
[#007] sha256:d85d98f0328af70475fa6fa5cc0eb87dac8e9ba4b558b344f30a932f4ef3f522 - 0.03% (4.16 KB)
[#008] sha256:0db8ae1c2a7f3ea45657ef3c6f5ba8f7d99852b4214d92d17a412c36377479b4 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:33578d3cacfab86c195d99396dd012ec511796a1d2d8d6f0a02b8a055673c294 in /
2020-04-23 22:04:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 08:33:33 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-04-24 08:33:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 08:33:36 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 08:43:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2020-04-24 08:43:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.17
2020-04-24 08:43:19 UTC/bin/sh -c #(nop) ENV PG_SHA256=f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
2020-04-24 08:45:16 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
2020-04-24 08:45:18 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 08:45:20 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 08:45:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 08:45:23 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 08:45:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 08:45:25 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-04-24 08:45:27 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-04-24 08:45:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 08:45:28 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 08:45:29 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-24 14:22:31 UTC
13.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
PG_VERSION9.6.17
[#000] sha256:29e5d40040c18c692ed73df24511071725b74956ca1a61fe6056a651d86a13bd - 19.48% (2.6 MB)
[#001] sha256:e2deb5bf01f13e32487d25d3e9a01a520f37169eb3947129cd16b8cf850d5bab - 0.01% (1.25 KB)
[#002] sha256:b7d56ad23dde28bb28a0df49e642e38f043a63a0c8d44cf228044eff1827de50 - 0.0% (149 Bytes)
[#003] sha256:6d0028575bd7a187dfffb2a6754d4ab73718129be44d7281b12dd11a497b8d24 - 80.42% (10.7 MB)
[#004] sha256:ff7d5510f5ed135280d24877e3d2919367ecbfe8672da03d54603bf089afddc1 - 0.05% (6.98 KB)
[#005] sha256:e500f19ec5bfb4b96f93225c1085cf0a0887954c38501a798a0c114880b7ec42 - 0.0% (161 Bytes)
[#006] sha256:ee88d52bf1c3992ad1115cb2c2322e5e83f07bdd011dc39f593046bedaf2d225 - 0.0% (193 Bytes)
[#007] sha256:2b8dd41af7ddad471b1fb3000634a4eb78808daf69151a8c46865d692a0528c5 - 0.03% (4.16 KB)
[#008] sha256:5de248422016cc87d5c2177f50d0c18f9d1e3a5524fc741ad71bd1ce74f6d351 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:85ae77bc1e43353ff14e6fe1658be1ed4ecbf4330212ac3d7ab7462add32dd39 in /
2020-04-24 00:14:21 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 14:08:36 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-04-24 14:08:38 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 14:08:42 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 14:20:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2020-04-24 14:20:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.17
2020-04-24 14:20:08 UTC/bin/sh -c #(nop) ENV PG_SHA256=f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
2020-04-24 14:22:19 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
2020-04-24 14:22:22 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 14:22:23 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 14:22:24 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 14:22:26 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 14:22:27 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 14:22:27 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-04-24 14:22:29 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-04-24 14:22:30 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 14:22:31 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 14:22:31 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-24 06:50:17 UTC
14.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.6
PG_SHA256f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
PG_VERSION9.6.17
[#000] sha256:9a8fdc5b698322331ee7eba7dd6f66f3a4e956554db22dd1e834d519415b4f8e - 18.65% (2.69 MB)
[#001] sha256:c8df1307f81687eb57717789c618ebcae3d1f81c5c155bdd5b96e38d71bb9747 - 0.01% (1.26 KB)
[#002] sha256:b7c05d9c9ea5c9eb70234c2443b1e0a454ba2f750d808560d28fa8ed32229167 - 0.0% (149 Bytes)
[#003] sha256:6ac7e741f9ca238adb3cd488adebb870f9d33d6df840954a92e421f22e44ed23 - 81.26% (11.7 MB)
[#004] sha256:a61fa68a46f5ef187e7ec48170f2fde7d7d97d738ab433792eb6602cdb15fc01 - 0.05% (6.99 KB)
[#005] sha256:6c2b058d67576bbaedd502a55417b7c0ebb20be8274a0b5519bad45796bad983 - 0.0% (161 Bytes)
[#006] sha256:21b485cc1e3aa1cf35230d656f3e94eaf442d87e7c7cefe0c51ab4c527e61572 - 0.0% (194 Bytes)
[#007] sha256:dfb7f81566e6db17ae317a5585c1dfd0abe67c987f859acff94a470fccfd9b9a - 0.03% (4.16 KB)
[#008] sha256:087a6b9e6a20a78211d6ea9fd55acd5d0589be413af03693a25c5402cde5633f - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:1aaebe252dfb1885e066fcbc84aaa915bae149c3608f19600855ad1d4f7450c1 in /
2020-04-23 20:39:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 06:26:20 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-04-24 06:26:26 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 06:26:37 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 06:45:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2020-04-24 06:45:57 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.17
2020-04-24 06:46:03 UTC/bin/sh -c #(nop) ENV PG_SHA256=f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
2020-04-24 06:48:57 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
2020-04-24 06:49:13 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 06:49:22 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 06:49:29 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 06:49:38 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 06:49:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 06:49:49 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-04-24 06:50:01 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-04-24 06:50:06 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 06:50:12 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 06:50:17 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-04-24 06:57:55 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.6
PG_SHA256f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
PG_VERSION9.6.17
[#000] sha256:7184c046fdf17da4c16ca482e5ede36e1f2d41ac8cea9c036e488fd149d6e8e7 - 18.69% (2.46 MB)
[#001] sha256:8fde159b9a8b82bd8df9811d19510149c4b99ee867783653adaab28baa4143ae - 0.01% (1.25 KB)
[#002] sha256:7825d6effaa586d60a176215d9f11ecd1bd76c6afe3e47f50f6259ad464598b3 - 0.0% (149 Bytes)
[#003] sha256:ad5c2923a637ebab0c2fe50eb752d2e31eb64240d988a8b3fdffb95e6760198e - 81.22% (10.7 MB)
[#004] sha256:d4e52d42c5fb5561b23ac75d724e93b032a37e823a2d0ceb538960070b098f19 - 0.05% (6.99 KB)
[#005] sha256:b210e0f454b57af03645883493cb9416db26d0e862017e8e21d965ce2732e048 - 0.0% (161 Bytes)
[#006] sha256:b2db9d3fbfd170929512f41a352737600474a11a3761c75f8a7d333f4951111a - 0.0% (194 Bytes)
[#007] sha256:1b568596176dae157c98ab4664363678c2c77e19758e4d424ea0986968693603 - 0.03% (4.16 KB)
[#008] sha256:1bc0c4189910422c621d8458699ec0b5d30d19fc2562e09802438a4412e38954 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:a59a30c2fd43c9f3b820751a6f5a54688c14440a1ddace1ab255475f46e6ba2d in /
2020-04-23 17:50:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-04-24 06:45:36 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2020-04-24 06:45:36 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-04-24 06:45:37 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-04-24 06:55:20 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2020-04-24 06:55:20 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.17
2020-04-24 06:55:20 UTC/bin/sh -c #(nop) ENV PG_SHA256=f6e1e32d32545f97c066f3c19f4d58dfab1205c01252cf85c5c92294ace1a0c2
2020-04-24 06:57: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 && 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
2020-04-24 06:57:52 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-04-24 06:57:52 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-04-24 06:57:53 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-04-24 06:57:53 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-04-24 06:57:54 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-04-24 06:57:54 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-04-24 06:57:54 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-04-24 06:57:55 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-04-24 06:57:55 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-04-24 06:57:55 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.