2020-08-14 17:50:27 UTC
62.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
PG_VERSION13beta3
[#000] sha256:0625b4155e2a59f647ece47c0cd77ed3196b1f84454fa64ce80cad90e2b9b79e - 4.26% (2.66 MB)
[#001] sha256:c748d368bf108a32daf0810b28e1996f37eca0dfed0dac7c8c2598e6c6029748 - 0.0% (1.22 KB)
[#002] sha256:8b0010b2123bc87ca763bce1e85a2350a168ce13065a7ae9b47e6ed49fa4b72d - 0.0% (115 Bytes)
[#003] sha256:3bec1a529f3d60bd7225aebaca88322f3bdae52f14586d14c418ba7d4f0d673f - 95.72% (59.8 MB)
[#004] sha256:ac9c932a6814e192bf834e9ddade7da4363d1a60ad59fff9e5ca6d04356337ef - 0.01% (8.34 KB)
[#005] sha256:60f4a8e4dba58f2b3b6b6e0b5a38de351676b3d7323b1f80b57eef16f00956b8 - 0.0% (128 Bytes)
[#006] sha256:0f0d9e4cc68ffffa329ba88bdac6d72e37aed219a9e0870714ab8d2d7536ab39 - 0.0% (162 Bytes)
[#007] sha256:c4ef976ea42835f6928ec9b4daf915ef87c5d9f82c41263dbfa6bd7921fd01e2 - 0.01% (4.16 KB)
/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:02:23 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2020-08-14 17:39:13 UTC/bin/sh -c #(nop) ENV PG_VERSION=13beta3
2020-08-14 17:39:13 UTC/bin/sh -c #(nop) ENV PG_SHA256=863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
2020-08-14 17:50:23 UTC/bin/sh -c set -eux; 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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; postgres --version
2020-08-14 17:50:24 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-08-14 17:50:24 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-08-14 17:50:25 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-08-14 17:50:25 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-08-14 17:50:26 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-08-14 17:50:26 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-08-14 17:50:26 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-08-14 17:50:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-08-14 17:50:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-08-14 17:26:30 UTC
59.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
PG_VERSION13beta3
[#000] sha256:df20fa9351a15782c64e6dddb2d4a6f50bf6d3688060a34c4014b0d9a752eb4c - 4.51% (2.67 MB)
[#001] sha256:600cd4e17445b526dc093ca716d204a866349e5c7228251e31178e81371c47ff - 0.0% (1.22 KB)
[#002] sha256:04c8eedc9a7657acd81498f6619dffcb88d9a150879f9ec0cc358834aa84aaf7 - 0.0% (115 Bytes)
[#003] sha256:e1cd7a27b77a9e18018a2a48f1d36ba919490fe005826cf16fda939a4b827012 - 95.46% (56.4 MB)
[#004] sha256:d664703aecf17f1c561bb75b28144ed4be15f7cb5a913a863131c7ac9ee502b2 - 0.01% (8.33 KB)
[#005] sha256:9d0f9e022a76286bbf81deb71a81865f04eaa02224ae42fd5fab8a3f50579fbe - 0.0% (128 Bytes)
[#006] sha256:99d39193700b759b051268add99b614a34083f08318792a0b9470e9184b4cfad - 0.0% (163 Bytes)
[#007] sha256:f442b720b44a51559804d17f405dc86459a251b65c090a4e879a712fbb68d80b - 0.01% (4.16 KB)
/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 22:46:49 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2020-08-14 17:20:56 UTC/bin/sh -c #(nop) ENV PG_VERSION=13beta3
2020-08-14 17:20:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
2020-08-14 17:26:27 UTC/bin/sh -c set -eux; 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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; postgres --version
2020-08-14 17:26:28 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-08-14 17:26:28 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-08-14 17:26:29 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-08-14 17:26:29 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-08-14 17:26:29 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-08-14 17:26:30 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-08-14 17:26:30 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-08-14 17:26:30 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-08-14 17:26:30 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-08-14 16:55:22 UTC
57.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
PG_VERSION13beta3
[#000] sha256:b4b72e716706d29f5d2351709c20bf737b94f876a5472a43ff1b6e203c65d27f - 4.32% (2.48 MB)
[#001] sha256:4e0c6822b30b82f1bf3837b7d730cf7d68d7101602023fc38fb839cf826a5bd6 - 0.0% (1.25 KB)
[#002] sha256:dcc1c5a5bbcba93ab5809dbcc58c6042d7a9983681f6a6f951d947b0d4d0c3b5 - 0.0% (149 Bytes)
[#003] sha256:e15640ed6898b15f4d475da40f9bba8ea99b8457a87a4e194c3a7c8dfee6096c - 95.65% (54.9 MB)
[#004] sha256:2465cbe4a54442e8f0741663d78a69f32e3dc05b87353034d11a9066acb84ae6 - 0.01% (8.33 KB)
[#005] sha256:20a9a8a86bf0f5fc9bf1b74e46fd2614bf05eb4e079c2cb8c62261c92008e1b8 - 0.0% (161 Bytes)
[#006] sha256:5e14e76485116772f4e8836729b76b53226908c7bcbf60a0737c59129eca6801 - 0.0% (193 Bytes)
[#007] sha256:fbe505a0beae65af4d1a5792113a31f09d463a9507c557a0ac586908fe39112c - 0.01% (4.16 KB)
/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:27:31 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2020-08-14 16:50:59 UTC/bin/sh -c #(nop) ENV PG_VERSION=13beta3
2020-08-14 16:50:59 UTC/bin/sh -c #(nop) ENV PG_SHA256=863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
2020-08-14 16:55:12 UTC/bin/sh -c set -eux; 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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; postgres --version
2020-08-14 16:55:15 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-08-14 16:55:17 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-08-14 16:55:17 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-08-14 16:55:19 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-08-14 16:55:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-08-14 16:55:20 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-08-14 16:55:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-08-14 16:55:21 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-08-14 16:55:22 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-08-14 17:27:12 UTC
54.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
PG_VERSION13beta3
[#000] sha256:52278dd8e57993669c5b72a9620e89bebdc098f2af2379caaa8945f7403f77a2 - 4.2% (2.3 MB)
[#001] sha256:fcd3f931b2a724d22b1f76af233e84a5d592aa2a21caad88700c700ef28bec95 - 0.0% (1.24 KB)
[#002] sha256:19f754b96158415f11b928d9d9e9f98a8cd305f2a033ef0b4c6e7bfe6645b508 - 0.0% (149 Bytes)
[#003] sha256:22c483c493c7a7df32146aea2a3ce7d5fb580f74b1cb9482b6ff1ace6b4bbbe7 - 95.78% (52.4 MB)
[#004] sha256:9c08e7bf8afed513eafda54cb5f956b13c22592255583962bae7867438cb9579 - 0.01% (8.34 KB)
[#005] sha256:5e22503f4ea730f468dbac8205bba260cfeb8d41aa8d6a9d3bc9a9df7e60435f - 0.0% (161 Bytes)
[#006] sha256:c76aa9826a66b6a3a273aa95ee18de178db80e8530726e88d149ce30ee55bce6 - 0.0% (193 Bytes)
[#007] sha256:9bf37dac617b84d2ef0d3fb7b7cd033f3236289843cc2120e59ef7178d8f08e5 - 0.01% (4.16 KB)
/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 20:44:02 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2020-08-14 17:24:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=13beta3
2020-08-14 17:24:08 UTC/bin/sh -c #(nop) ENV PG_SHA256=863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
2020-08-14 17:27:01 UTC/bin/sh -c set -eux; 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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; postgres --version
2020-08-14 17:27:04 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-08-14 17:27:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-08-14 17:27:06 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-08-14 17:27:08 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-08-14 17:27:09 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-08-14 17:27:10 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-08-14 17:27:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-08-14 17:27:11 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-08-14 17:27:12 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-08-14 17:44:46 UTC
58.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
PG_VERSION13beta3
[#000] sha256:b538f80385f9b48122e3da068c932a96ea5018afa3c7be79da00437414bd18cd - 4.4% (2.58 MB)
[#001] sha256:f9d4833cc285b7342c1d7bab9159e04f3cb6d84914e4a6376bd605ef138613aa - 0.0% (1.25 KB)
[#002] sha256:6bf1f783f6dc9622807ab9414bb09346699c6eea41fd6260efcfe679699f206d - 0.0% (149 Bytes)
[#003] sha256:2d667fdce66e2934230c5daa5b80844b1673d614dda92d2838da45e9f69d793e - 95.58% (56.1 MB)
[#004] sha256:57f0c25725690d323846309bf86b19b422e16a5a82a5f2fb6885e8455568bcbc - 0.01% (8.34 KB)
[#005] sha256:84ef9b83717a1a463f18ac36bd5a9ba14db1066a08ca86bd77b7c6e4a9096f3c - 0.0% (163 Bytes)
[#006] sha256:6c580a58898a4c100543d9147f72e54fcc03766b16149343f2a7b9ae64dfb0f2 - 0.0% (193 Bytes)
[#007] sha256:a2c107160bbbb96d3018c501e58c48df2d9a72f581741d3c9b66ed9df4e3f4da - 0.01% (4.16 KB)
/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:06:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2020-08-14 17:41:21 UTC/bin/sh -c #(nop) ENV PG_VERSION=13beta3
2020-08-14 17:41:22 UTC/bin/sh -c #(nop) ENV PG_SHA256=863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
2020-08-14 17:44:34 UTC/bin/sh -c set -eux; 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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; postgres --version
2020-08-14 17:44:38 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-08-14 17:44:40 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-08-14 17:44:40 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-08-14 17:44:42 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-08-14 17:44:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-08-14 17:44:44 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-08-14 17:44:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-08-14 17:44:45 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-08-14 17:44:46 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-08-14 17:28:27 UTC
61.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
PG_VERSION13beta3
[#000] sha256:5077f8601dceb5744d875d7740ebc203f674b108a0188f3a31e292b21a4bee64 - 4.36% (2.68 MB)
[#001] sha256:8a9f72d45e54d4dd62def75147b46a533078a8d2923214d24a8e89d83d426c84 - 0.0% (1.25 KB)
[#002] sha256:7d870eff785c52b89df973046311ce60ebdc465c597c3268e41f87f0e4e645ef - 0.0% (149 Bytes)
[#003] sha256:c3a6eeb714101c243171a1c74c3019775ca197647499d45ea6d5063dd094a54d - 95.62% (58.7 MB)
[#004] sha256:17a53b8808689393d1688389e455cedc110b22ec7db36fbbbfa2d2bee84d45f3 - 0.01% (8.34 KB)
[#005] sha256:03a0eabcb048bcdf7fc68062bb7fb18eaad0f4d1371fbd9af5c1793db96449d7 - 0.0% (161 Bytes)
[#006] sha256:dd18bfb9cf9e33d5d99620c194e4b62130bc303ead66e6c3d94498951b90e171 - 0.0% (194 Bytes)
[#007] sha256:0066f455006bdebba6f493c65c52aa4bcc9c81d3f00cf33f05014cd1294b1a7e - 0.01% (4.16 KB)
/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 21:41:02 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2020-08-14 17:23:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=13beta3
2020-08-14 17:23:06 UTC/bin/sh -c #(nop) ENV PG_SHA256=863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
2020-08-14 17:27:24 UTC/bin/sh -c set -eux; 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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; postgres --version
2020-08-14 17:27:41 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-08-14 17:27:50 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-08-14 17:27:56 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-08-14 17:28:11 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-08-14 17:28:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-08-14 17:28:15 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-08-14 17:28:20 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-08-14 17:28:22 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-08-14 17:28:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-08-14 17:54:48 UTC
61.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR13
PG_SHA256863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
PG_VERSION13beta3
[#000] sha256:8fb3d41b2e9a59630b51745f257cd2561f96bcd15cf309fcc20120d5fcee8c5b - 3.98% (2.45 MB)
[#001] sha256:9066740685f109ff5f6b8d3a76bf92f0a147fc0c2c7a12e60fdc44c49e476f9d - 0.0% (1.25 KB)
[#002] sha256:a8b44ce9d8f58aeaceb2528f4511ad9c56f557e0951ea9cf22b452d5e2f8bbf0 - 0.0% (149 Bytes)
[#003] sha256:8d51af78a06ac0bbc2bf5e4bc0c19654de0967a180b5c6b187a939989a3438bf - 96.0% (59 MB)
[#004] sha256:20cdab784661a149a298344704e07d1cc6e6cc6d35a056142650193fbf3db347 - 0.01% (8.34 KB)
[#005] sha256:023233d76b7e2ccaa19c83853f3f4a3cdca5e56f983d8c4d9ad8c715c8334953 - 0.0% (163 Bytes)
[#006] sha256:25ab2fcdddf1487d2e3b63572a7c17895ff697ab615f048cc383bf47a3d55175 - 0.0% (194 Bytes)
[#007] sha256:f1bfccf1f73435ff7e79b6102347bd3cf277104318cf2c86f978b35c81138ba5 - 0.01% (4.16 KB)
/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 19:51:57 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2020-08-14 17:51:05 UTC/bin/sh -c #(nop) ENV PG_VERSION=13beta3
2020-08-14 17:51:05 UTC/bin/sh -c #(nop) ENV PG_SHA256=863e33ee9d1099e2a0f1cab6dbd015789b2c2af75cfbad814a3acdf7c8eeaf9d
2020-08-14 17:54:42 UTC/bin/sh -c set -eux; 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 llvm10-dev clang g++ make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-dev ; cd /usr/src/postgresql; awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new; grep '/var/run/postgresql' src/include/pg_config_manual.h.new; mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb'; wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb'; ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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; postgres --version
2020-08-14 17:54:45 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2020-08-14 17:54:46 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2020-08-14 17:54:46 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2020-08-14 17:54:47 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2020-08-14 17:54:47 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2020-08-14 17:54:47 UTC/bin/sh -c #(nop) COPY file:33e6fc6ab9ea2b87183e496ad72f1df7f682913ffd781b1451fd178b0c7d745a in /usr/local/bin/
2020-08-14 17:54:48 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2020-08-14 17:54:48 UTC/bin/sh -c #(nop) EXPOSE 5432
2020-08-14 17:54:48 UTC/bin/sh -c #(nop) CMD ["postgres"]