2020-06-26 22:52:44 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.5
PG_SHA25648555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
PG_VERSION9.5.22
[#000] sha256:0625b4155e2a59f647ece47c0cd77ed3196b1f84454fa64ce80cad90e2b9b79e - 18.76% (2.66 MB)
[#001] sha256:c748d368bf108a32daf0810b28e1996f37eca0dfed0dac7c8c2598e6c6029748 - 0.01% (1.22 KB)
[#002] sha256:8b0010b2123bc87ca763bce1e85a2350a168ce13065a7ae9b47e6ed49fa4b72d - 0.0% (115 Bytes)
[#003] sha256:ed65c34f21cc45605de530ecb1d514bd66924a6a00b95c9c6d88d9314efa4154 - 81.16% (11.5 MB)
[#004] sha256:efaeff244c0249cc4a0301d2426988c134a12f3c759fe0746f82fa17555b866c - 0.05% (6.73 KB)
[#005] sha256:75c75258746824d1c4dcd343b6fb2dbbacb38bb6914db04c784285e354b40388 - 0.0% (130 Bytes)
[#006] sha256:44766a7eea9bae617b9008c0c2ec388735ef3e82c3f7261ca15f092ac10573d2 - 0.0% (163 Bytes)
[#007] sha256:79a51372f49a5fc671cb625c268a3fd8a25bbc6541b6bf9b493f5e3d694ec5eb - 0.03% (4.16 KB)
[#008] sha256:2deef88c5b2e299ec8234cc3cedd65ee6af71de5041e547b4572b86ccd467e9f - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:5624441d97aca5eeb82a582941efc3586397098b8391227a9040ebe434cc1d6b in /
2020-05-29 21:38:33 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-06-11 23:02:21 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-06-11 23:02:22 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-06-11 23:02:23 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-11 23:47:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2020-06-11 23:47:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.22
2020-06-11 23:47:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
2020-06-26 22:52:39 UTC/bin/sh -c set -ex && 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 --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-06-26 22:52:40 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-06-26 22:52:41 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-06-26 22:52:41 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-06-26 22:52:42 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-06-26 22:52:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-06-26 22:52:42 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-06-26 22:52:43 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-06-26 22:52:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-26 22:52:44 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-06-26 22:52:44 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-06-26 21:13:41 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.5
PG_SHA25648555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
PG_VERSION9.5.22
[#000] sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c - 19.56% (2.67 MB)
[#001] sha256:600cd4e17445b526dc093ca716d204a866349e5c7228251e31178e81371c47ff - 0.01% (1.22 KB)
[#002] sha256:04c8eedc9a7657acd81498f6619dffcb88d9a150879f9ec0cc358834aa84aaf7 - 0.0% (115 Bytes)
[#003] sha256:dac3459ebf5a0bc3f9c40a0b448ede2187731cd78b9fe761527785ecb12af79a - 80.35% (11 MB)
[#004] sha256:118d500efd5310f647aeabec92102cbb31239bbdf96207bdf66fdf417d8d3110 - 0.05% (6.72 KB)
[#005] sha256:d0e96a629466ccc95e15ad70b529f4e6ac1365fd0fd6463e14b74e39b4bd779f - 0.0% (129 Bytes)
[#006] sha256:eb307ef591d3a007498dd021be12bad2d67e32cc10bcfc888b5e90d6b185e5e4 - 0.0% (164 Bytes)
[#007] sha256:6f866e373013a6ae8c93ef9290abf29aeb29629e61bdb962ec97630193b47687 - 0.03% (4.17 KB)
[#008] sha256:391043d2578da508150b6fb6b170474f30627da25660097b81810fe37bf040a8 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:c92c248239f8c7b9b3c067650954815f391b7bcb09023f984972c082ace2a8d0 in /
2020-05-29 21:19:46 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-06-11 22:46: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-06-11 22:46:48 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-06-11 22:46:49 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-11 23:24:02 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2020-06-11 23:24:02 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.22
2020-06-11 23:24:02 UTC/bin/sh -c #(nop) ENV PG_SHA256=48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
2020-06-26 21:13:36 UTC/bin/sh -c set -ex && 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 --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-06-26 21:13:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-06-26 21:13:38 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-06-26 21:13:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-06-26 21:13:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-06-26 21:13:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-06-26 21:13:39 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-06-26 21:13:40 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-06-26 21:13:41 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-26 21:13:41 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-06-26 21:13:41 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-06-26 19:57:47 UTC
13.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_SHA25648555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
PG_VERSION9.5.22
[#000] sha256:b4b72e716706d29f5d2351709c20bf737b94f876a5472a43ff1b6e203c65d27f - 19.01% (2.48 MB)
[#001] sha256:4e0c6822b30b82f1bf3837b7d730cf7d68d7101602023fc38fb839cf826a5bd6 - 0.01% (1.25 KB)
[#002] sha256:dcc1c5a5bbcba93ab5809dbcc58c6042d7a9983681f6a6f951d947b0d4d0c3b5 - 0.0% (149 Bytes)
[#003] sha256:b554cf2f7ed4290700673ac92d41f5339d67624224253788a7e464d592441817 - 80.89% (10.6 MB)
[#004] sha256:2711a7010f23b470b7c8d9a283a95fd120cbd8f48cf6c2018c693d24e5f030dd - 0.05% (6.73 KB)
[#005] sha256:4273f283efa3779c9a5efaac8a52e1c8db0003e3fbd7afaa963c15b3544edd6e - 0.0% (163 Bytes)
[#006] sha256:21d2d6ae81d8e4b7dada3f3530d74332e46868ea74c2bdaf99cface062ce3314 - 0.0% (195 Bytes)
[#007] sha256:7f7da301b6800878f75990d4f56008ef3a466d56da4ca7a0c098446e301c4943 - 0.03% (4.16 KB)
[#008] sha256:c5a8be6962eb2a4eb454acef4b0e1fb492816292ac5fb3b7ee16cede2c24f7bc - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:f46e997a56849423db17e5fc9f0249ab6c73b155245927dba5fcb9dfd65f622f in /
2020-05-29 21:50:56 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-06-11 20:27:27 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-06-11 20:27:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-06-11 20:27:30 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-11 20:48:19 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2020-06-11 20:48:20 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.22
2020-06-11 20:48:22 UTC/bin/sh -c #(nop) ENV PG_SHA256=48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
2020-06-26 19:57:21 UTC/bin/sh -c set -ex && 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 --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-06-26 19:57:24 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-06-26 19:57:28 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-06-26 19:57:29 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-06-26 19:57:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-06-26 19:57:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-06-26 19:57:43 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-06-26 19:57:45 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-06-26 19:57:46 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-26 19:57:47 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-06-26 19:57:47 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-06-26 19:46:50 UTC
12.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.5
PG_SHA25648555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
PG_VERSION9.5.22
[#000] sha256:52278dd8e57993669c5b72a9620e89bebdc098f2af2379caaa8945f7403f77a2 - 18.72% (2.3 MB)
[#001] sha256:fcd3f931b2a724d22b1f76af233e84a5d592aa2a21caad88700c700ef28bec95 - 0.01% (1.24 KB)
[#002] sha256:19f754b96158415f11b928d9d9e9f98a8cd305f2a033ef0b4c6e7bfe6645b508 - 0.0% (149 Bytes)
[#003] sha256:373b3a95030284b321c78bf73dae0699aec20044f83fcccf623b0c6d14811df5 - 81.18% (9.95 MB)
[#004] sha256:2e4abab2fcb400686efae41ee3a4dd1493a69c4dbebbbeb4bf51bd1feaa69d34 - 0.05% (6.72 KB)
[#005] sha256:a649d0cb80e7df05cbc0fac985f761adf18d092bfc59a19c95d4ced61c132776 - 0.0% (163 Bytes)
[#006] sha256:e6847d8a8e492bd979d4b66c3ce7fc396bcec252571e7b40c97ecca2fdd9bafa - 0.0% (195 Bytes)
[#007] sha256:e74469ef06c4d41d26bd5f6959da3fa607704fc786e9b13a97417d4867de64e0 - 0.03% (4.16 KB)
[#008] sha256:6abf5846827cc96a0f486fe81e3220caa1f54587708611c597091f067b0bb89e - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:e97bf0d217846312b19a9f7264604851aedd125c23b4d291eed4c69b880dce26 in /
2020-05-29 21:02:08 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-06-11 20:43:57 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-06-11 20:43:58 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-06-11 20:44:01 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-11 21:02:26 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2020-06-11 21:02:26 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.22
2020-06-11 21:02:27 UTC/bin/sh -c #(nop) ENV PG_SHA256=48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
2020-06-26 19:46:22 UTC/bin/sh -c set -ex && 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 --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-06-26 19:46:27 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-06-26 19:46:30 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-06-26 19:46:31 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-06-26 19:46:34 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-06-26 19:46:35 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-06-26 19:46:35 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-06-26 19:46:43 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-06-26 19:46:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-26 19:46:47 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-06-26 19:46:50 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-06-26 21:01:01 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_SHA25648555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
PG_VERSION9.5.22
[#000] sha256:b538f80385f9b48122e3da068c932a96ea5018afa3c7be79da00437414bd18cd - 19.26% (2.58 MB)
[#001] sha256:f9d4833cc285b7342c1d7bab9159e04f3cb6d84914e4a6376bd605ef138613aa - 0.01% (1.25 KB)
[#002] sha256:6bf1f783f6dc9622807ab9414bb09346699c6eea41fd6260efcfe679699f206d - 0.0% (149 Bytes)
[#003] sha256:d39eb4a5ff0cddfb432ae11f6c97046e002712d0802778e9ddb483b9a13d7592 - 80.64% (10.8 MB)
[#004] sha256:72cd6cc60a83b8ed46e21e138e737afb61e030246a2ca9ee864f99165410cfe1 - 0.05% (6.72 KB)
[#005] sha256:cbe76dc5b03af6e1057878e8efa0944e485c92b9683d933ed308f7cc077987f8 - 0.0% (161 Bytes)
[#006] sha256:0649699a9204ac484bcdcd74e40d108e8d4d6318e063005b70763ce6c55e49ed - 0.0% (195 Bytes)
[#007] sha256:c895716a020ef32cb5845abc1ae902eab4f581180c3ceb133471c94b10a03db9 - 0.03% (4.16 KB)
[#008] sha256:a434798dfcd57ac8c01bb371cbbc2ca3a2ca2252151e08fc17696d8370ebadc5 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:7574aee4e37a85460ab889212d52912723a9b30dda1c060548f0deb4a05fc398 in /
2020-05-29 21:43:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-06-11 21:06:12 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-06-11 21:06:13 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-06-11 21:06:16 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-11 21:38:08 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2020-06-11 21:38:09 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.22
2020-06-11 21:38:12 UTC/bin/sh -c #(nop) ENV PG_SHA256=48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
2020-06-26 21:00:32 UTC/bin/sh -c set -ex && 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 --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-06-26 21:00:38 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-06-26 21:00:46 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-06-26 21:00:47 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-06-26 21:00:51 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-06-26 21:00:52 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-06-26 21:00:53 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-06-26 21:00:57 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-06-26 21:00:58 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-26 21:00:59 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-06-26 21:01:01 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-06-26 20:44:09 UTC
14.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_SHA25648555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
PG_VERSION9.5.22
[#000] sha256:5077f8601dceb5744d875d7740ebc203f674b108a0188f3a31e292b21a4bee64 - 18.46% (2.68 MB)
[#001] sha256:8a9f72d45e54d4dd62def75147b46a533078a8d2923214d24a8e89d83d426c84 - 0.01% (1.25 KB)
[#002] sha256:7d870eff785c52b89df973046311ce60ebdc465c597c3268e41f87f0e4e645ef - 0.0% (149 Bytes)
[#003] sha256:d7b64c4df1e9e57488303b2325abbcd6be303c7685b8c0893274693a86c051fb - 81.45% (11.8 MB)
[#004] sha256:bf48774970f0e8aa3a6b7615c52cc2c4374e0c46bab229f1120efd11fcbf65e6 - 0.05% (6.72 KB)
[#005] sha256:b103d1a54d060b3a26e3c8515cf600e017aece74ef346f5d281a25a267a6171e - 0.0% (162 Bytes)
[#006] sha256:efadf3201d6b8fe128d0279617d06858a0c7e13336cc3940054fb42c4536a47f - 0.0% (193 Bytes)
[#007] sha256:bb2f7cb1a7d038d53fbdb25777adc0b73dd39a78b728b18ce412d042b785f08b - 0.03% (4.16 KB)
[#008] sha256:157fd673b855c48ffc604c2c95e5bf00a3ed536ec0139f49b1f5f93793e1c3c0 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:8194808a812370fd2202d80d1667f851bd9eac4c560d69d347fe1964f54343de in /
2020-05-29 21:23:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-06-11 21:40:53 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-06-11 21:40:56 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-06-11 21:41:01 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-11 22:02:34 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2020-06-11 22:02:38 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.22
2020-06-11 22:02:41 UTC/bin/sh -c #(nop) ENV PG_SHA256=48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
2020-06-26 20:42:57 UTC/bin/sh -c set -ex && 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 --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-06-26 20:43:07 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-06-26 20:43:16 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-06-26 20:43:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-06-26 20:43:36 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-06-26 20:43:40 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-06-26 20:43:42 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-06-26 20:43:54 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-06-26 20:43:58 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-26 20:44:03 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-06-26 20:44:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-06-26 20:06:57 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.5
PG_SHA25648555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
PG_VERSION9.5.22
[#000] sha256:8fb3d41b2e9a59630b51745f257cd2561f96bcd15cf309fcc20120d5fcee8c5b - 18.46% (2.45 MB)
[#001] sha256:9066740685f109ff5f6b8d3a76bf92f0a147fc0c2c7a12e60fdc44c49e476f9d - 0.01% (1.25 KB)
[#002] sha256:a8b44ce9d8f58aeaceb2528f4511ad9c56f557e0951ea9cf22b452d5e2f8bbf0 - 0.0% (149 Bytes)
[#003] sha256:5a1c1277a2585fbbfb900e846a1b2c9617026bb9085c52497b5de5d63d1a1d6d - 81.44% (10.8 MB)
[#004] sha256:2b5299d39aaabf9049232ad2add4dd7be1c08d8b41b133d1fe058762f892203b - 0.05% (6.72 KB)
[#005] sha256:1b951fc6ecb2031e55f7f07e5271fb39f8289bd297421070ccc7987323ef0b82 - 0.0% (162 Bytes)
[#006] sha256:a9d92c891506501f33ee784a3b4dc3abdb40e9d230f4242524778034b55122c4 - 0.0% (195 Bytes)
[#007] sha256:7255f2fe32155217e83c8f4d7504e4c6dae9295d9ea8e2311a13837f9dc85a8d - 0.03% (4.16 KB)
[#008] sha256:ac8924873524556804980e4ce377729066b5380d6ecc2c37536ccc56a0591f02 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:9799ce3b2f782a28e10b1846cd9b3db827fa99c9bc601feb268456195856814e in /
2020-05-29 21:41:39 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2020-06-11 19:51:55 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-06-11 19:51:56 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2020-06-11 19:51:57 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2020-06-11 20:10:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2020-06-11 20:10:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.22
2020-06-11 20:10:08 UTC/bin/sh -c #(nop) ENV PG_SHA256=48555470a17248cb204d25ab1ad4231ef16295db55161922f006b9942d69640f
2020-06-26 20:06:52 UTC/bin/sh -c set -ex && 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 --no-network .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete
2020-06-26 20:06:54 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-06-26 20:06:54 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-06-26 20:06:55 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-06-26 20:06:55 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-06-26 20:06:56 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-06-26 20:06:56 UTC/bin/sh -c #(nop) COPY file:8241ba12b253167d267d2d8aba237bf478f6de0a6f29aa61515376f105626d03 in /usr/local/bin/
2020-06-26 20:06:57 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2020-06-26 20:06:57 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-06-26 20:06:57 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-06-26 20:06:57 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.