2021-01-29 03:17:17 UTC
62.8 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_SHA25612345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
PG_VERSION13.1
[#000] sha256:3fea00a81341ce917db671eb3ad24ef5750cb6928b7f760e3ce4dab619eeb1fa - 4.28% (2.69 MB)
[#001] sha256:6577fee13210fe1c3f4549f1ef86d700f99fac79b2fdd5b840c7e298d9ff5899 - 0.0% (1.22 KB)
[#002] sha256:aa4cc8bff7850ed45d5f7c08b1b4f9325ba2867fd9e91d3cbfa84e30234509ce - 0.0% (115 Bytes)
[#003] sha256:b59fb48f0995a9b096ddc6449d496afbd206e5a393903d62055a02335d910323 - 95.7% (60.1 MB)
[#004] sha256:e32a9a60a6e47a6ea1a264e673bea0b3b1e6ff5ee8d58667993266dbe22ed4af - 0.01% (8.33 KB)
[#005] sha256:aa9a350c4e9e55e8e925da9b917d78f00857477f6f4193217dc64792e46e1a59 - 0.0% (129 Bytes)
[#006] sha256:3710a9c90e6273f25ed365714c6247c2357e188adc316ddca2c1c979145925f9 - 0.0% (162 Bytes)
[#007] sha256:0f15e89a141a6e2d35bb735e7e228b1017886d1ce56ede6665c6053a8c8b88c6 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:c0e9ea135d66ad6504c77915a7a48b3bead60892d155d3258b746cb4945981c0 in /
2021-01-28 23:38:31 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-01-29 03:03: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
2021-01-29 03:03:58 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-01-29 03:03:59 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-29 03:04:00 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-01-29 03:04:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.1
2021-01-29 03:04:01 UTC/bin/sh -c #(nop) ENV PG_SHA256=12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
2021-01-29 03:17:09 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 ; postgres --version
2021-01-29 03:17:11 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-01-29 03:17:12 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-01-29 03:17:13 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-01-29 03:17:14 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-01-29 03:17:15 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-01-29 03:17:15 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-01-29 03:17:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-29 03:17:16 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-01-29 03:17:17 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-01-29 03:17:17 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-29 03:01:22 UTC
59.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_SHA25612345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
PG_VERSION13.1
[#000] sha256:4c0d98bf9879488e0407f897d9dd4bf758555a78e39675e72b5124ccf12c2580 - 4.52% (2.68 MB)
[#001] sha256:7ff5918c11c3ab1f2763192c7c033f5dfe60b30d369a8aa483d65326974b637a - 0.0% (1.22 KB)
[#002] sha256:c393806625cde0c68d6881aaeb6a8305d841ad1ec4e6152fe5dde27a6c7b4af8 - 0.0% (115 Bytes)
[#003] sha256:9307f3bcca3a3c96fa4f21cc851f49f877096fc2626817d148d1c8cbc70bcb25 - 95.46% (56.7 MB)
[#004] sha256:5eee78b95230e292517369656c57174ab474a5816040c1c9b97857e2b1d151ef - 0.01% (8.33 KB)
[#005] sha256:c0f2174cad0ecea8b84d0f6fb84fdb82b77623253a01f65f0854bcb26be6c24a - 0.0% (128 Bytes)
[#006] sha256:dd6b4e21c9936b9d3a480bcc26a0b6e7a4fb71f11e70c63f4da7953d0c8dbc92 - 0.0% (163 Bytes)
[#007] sha256:1011823211fa960c4dae9c5929e2b284c9617492e99ffbf7f95d91c709606401 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:0e2d487cd80773e947c8aae6daad3d565b7bb019a954af2b8bff188681c00d81 in /
2021-01-28 23:19:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-01-29 02:53: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
2021-01-29 02:53:55 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-01-29 02:53:56 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-29 02:53:56 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-01-29 02:53:56 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.1
2021-01-29 02:53:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
2021-01-29 03:01:17 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 ; postgres --version
2021-01-29 03:01:18 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-01-29 03:01:19 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-01-29 03:01:20 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-01-29 03:01:21 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-01-29 03:01:21 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-01-29 03:01:21 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-01-29 03:01:22 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-29 03:01:22 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-01-29 03:01:22 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-01-29 03:01:22 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-29 01:13:27 UTC
57.8 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_SHA25612345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
PG_VERSION13.1
[#000] sha256:a66f440da051140fefcb0a520bdeb69d763b1eb4fd1b2ed46b4c0a168e335108 - 4.33% (2.5 MB)
[#001] sha256:47814bcbfb45802646b189af4a9bc3e4510a538b55fd2808df448ec5e6491cff - 0.0% (1.25 KB)
[#002] sha256:8c6e4686dd674a32664773b275c120c9879a27454fb70c89ea4663315c3b84c6 - 0.0% (149 Bytes)
[#003] sha256:8544364e69e45c088cec7741bfc86678755d220960ab6085971b208453a26cfc - 95.65% (55.2 MB)
[#004] sha256:173ad69d370f66f30feaed5908dad55683bab9009ed30302b1b082b037f9ca16 - 0.01% (8.34 KB)
[#005] sha256:fa6df55a4a74ee31526168f7e238eea26498febfbfeb9a95fe4178f908c217c1 - 0.0% (161 Bytes)
[#006] sha256:e10b7a405b5c73b2e4c8f52b148319aceee7fd36328559dc9d4a69b5867709ce - 0.0% (193 Bytes)
[#007] sha256:4a458cbd2996e049c7ee4ff8166771aeebc09817661ced95bb8f544f78451312 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:c197324e4979e2a7b257ad683d20dd9cbdae525a076bd68fe6aa0e0b126875df in /
2021-01-28 23:49:59 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-01-29 01:09:22 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
2021-01-29 01:09:23 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-01-29 01:09:25 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-29 01:09:25 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-01-29 01:09:26 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.1
2021-01-29 01:09:27 UTC/bin/sh -c #(nop) ENV PG_SHA256=12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
2021-01-29 01:13:14 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 ; postgres --version
2021-01-29 01:13:19 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-01-29 01:13:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-01-29 01:13:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-01-29 01:13:23 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-01-29 01:13:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-01-29 01:13:24 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-01-29 01:13:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-29 01:13:26 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-01-29 01:13:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-01-29 01:13:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-29 01:50:51 UTC
54.9 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_SHA25612345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
PG_VERSION13.1
[#000] sha256:9b1db703a337d301b1d50292acfbabd5fb3796511b962410c554420b85cd78dc - 4.21% (2.31 MB)
[#001] sha256:e7fa668b3d0ed9168e26ae186f3e531d3ae1e280d94f950446b3683eaaab37c8 - 0.0% (1.24 KB)
[#002] sha256:61f921cd3d5ba006be49bcfc3c119ff3d8f5d35fbc011e764afbbce4ee5b61b4 - 0.0% (149 Bytes)
[#003] sha256:328396e657d0e2aa67a5c6de7b8ec405378ead69588ec11f950a9dc8ef06d839 - 95.77% (52.6 MB)
[#004] sha256:dfefab200932a3ab408aa224e85e5ed060f2b548fb9fab1a399b67be05e7f2c2 - 0.01% (8.34 KB)
[#005] sha256:7998519f45031204d3f283ddee9fe1276482b1270e376b7fc74a8752060bb241 - 0.0% (162 Bytes)
[#006] sha256:f931cd32a9c6ac09b3f73fbcbc89c1263d1ad2cbe7c8e6e682e9b1c7569917cf - 0.0% (193 Bytes)
[#007] sha256:efd9d9b26159ec1be9625c2928ba3a3fdeff846052d150a9d63b21dc83e6e3ba - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:98a89b90a8b442eed5301790dd2bd3a27391c5e4426126eed9d1cf44e70f8857 in /
2021-01-28 23:58:04 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-01-29 01:46:41 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
2021-01-29 01:46:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-01-29 01:46:44 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-29 01:46:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-01-29 01:46:47 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.1
2021-01-29 01:46:48 UTC/bin/sh -c #(nop) ENV PG_SHA256=12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
2021-01-29 01:50:31 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 ; postgres --version
2021-01-29 01:50:38 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-01-29 01:50:42 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-01-29 01:50:43 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-01-29 01:50:45 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-01-29 01:50:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-01-29 01:50:47 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-01-29 01:50:48 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-29 01:50:49 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-01-29 01:50:50 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-01-29 01:50:51 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-29 00:56:18 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_SHA25612345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
PG_VERSION13.1
[#000] sha256:2914792bc417803b2106001990194cc00cdd4b6fd97cd21a368f26148bc8e722 - 4.41% (2.59 MB)
[#001] sha256:84190c434223807f9b123dbab6b871f4d978fc7fcfb7bd372aae021a3f90b9cf - 0.0% (1.25 KB)
[#002] sha256:a23887416d5dd038d93a43a59a6bc616f68e5f6805f3aadcedb9577d2274a5f0 - 0.0% (149 Bytes)
[#003] sha256:9e3ee89fd4549d7061710dd37514bc6cba800dc99f7a9c34d17d804ba1da6318 - 95.57% (56.1 MB)
[#004] sha256:0483e8077a101e2825ad338fdea34a1d7f706d95f31cd26e1243d575b6793b5c - 0.01% (8.34 KB)
[#005] sha256:43cd991b5229550224576632e819987a50ab81580d18765777daae2b07986049 - 0.0% (160 Bytes)
[#006] sha256:22422c0a856b3f70d82bad08f96545ceda209baf070f54ef6fa6af499dceca3d - 0.0% (193 Bytes)
[#007] sha256:6092c2652248d5e9d574f5d04ee93638a20d8fccd85d9873366e1f31234cd28e - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:fecabe41deaeb72acdd63023566d87ae48b013ef80c97fdd993b55d6c727da93 in /
2021-01-28 23:39:34 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-01-29 00:52:23 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
2021-01-29 00:52:24 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-01-29 00:52:26 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-29 00:52:27 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-01-29 00:52:28 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.1
2021-01-29 00:52:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
2021-01-29 00:56:02 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 ; postgres --version
2021-01-29 00:56:06 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-01-29 00:56:09 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-01-29 00:56:10 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-01-29 00:56:12 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-01-29 00:56:13 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-01-29 00:56:14 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-01-29 00:56:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-29 00:56:17 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-01-29 00:56:18 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-01-29 00:56:18 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-29 01:55:35 UTC
61.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_SHA25612345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
PG_VERSION13.1
[#000] sha256:f3b94a1d8d591af02f1b419642bee91066ecbb9c65099d6903deed310fd1c2ff - 4.35% (2.68 MB)
[#001] sha256:ff06bd42b80b365bb0c19fbbbe316a95812c98b5963e0930ea89cc0c684a2833 - 0.0% (1.25 KB)
[#002] sha256:bf320aafe224f5aad678f29f514b47d6d4aefcd42e80b7041098c1da820f8c23 - 0.0% (149 Bytes)
[#003] sha256:9888fa6f6eb392f5f094f7053ec93174edcab7b5e65dda420ee5cdf5d603d61c - 95.63% (59 MB)
[#004] sha256:2bef199871ad981783234066c45d82c7ec48dec0ca9fd3303981f65fad72d3c5 - 0.01% (8.33 KB)
[#005] sha256:2652bd8d9dc227815234ab9a2e1a8e6073cdcc9284cf415b644cf6094f74b735 - 0.0% (161 Bytes)
[#006] sha256:d232f80be578e4cfdf1fb3901cd3ddaed6c83fe26c899f43df7c9005e7825b81 - 0.0% (195 Bytes)
[#007] sha256:15d5cbdceaaf03912db2f04e242ac8cf16733bee55f14f53e91acdb74ebd4989 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:b14fd5f3f7fcd16e2b4ec6932d3e9c07c7400c577cee5fdcb88b0795a70a7bfb in /
2021-01-28 23:55:52 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-01-29 01:48:47 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
2021-01-29 01:48:55 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-01-29 01:49:10 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-29 01:49:14 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-01-29 01:49:21 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.1
2021-01-29 01:49:24 UTC/bin/sh -c #(nop) ENV PG_SHA256=12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
2021-01-29 01:53:50 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 ; postgres --version
2021-01-29 01:54:17 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-01-29 01:54:40 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-01-29 01:54:46 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-01-29 01:54:57 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-01-29 01:55:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-01-29 01:55:05 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-01-29 01:55:11 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-29 01:55:21 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-01-29 01:55:27 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-01-29 01:55:35 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-01-29 01:33:16 UTC
62 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_SHA25612345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
PG_VERSION13.1
[#000] sha256:43901f1af0ef9db6b0bf30ac6f6dacd78bf1ecfeb47ad0a93aa2370fa8e62407 - 4.0% (2.48 MB)
[#001] sha256:ddb7987d6a49388c77e555f2547e538d557a90c40b705e0fe10a7ef952d82326 - 0.0% (1.25 KB)
[#002] sha256:e7d07431bbbdfa6c1540603fded3d65695c350f29a3aa77a1e475296db695a5a - 0.0% (149 Bytes)
[#003] sha256:13a7f507ceaa7468b1da7ece1dd3edb98dc4da76e8c12d3784de8d83bb4a2051 - 95.98% (59.5 MB)
[#004] sha256:2af5c4cbef8a0b0d7982ffd9ab0a4bb0dfe3adddc235d5afdc0f75b24d1a097c - 0.01% (8.34 KB)
[#005] sha256:eb363f2ac79aefa9854f3b3a07efbad95ab3fae789551f5e3eea021857e095d3 - 0.0% (163 Bytes)
[#006] sha256:e8510cc57b56bdf7b62a20676c657ea773a87d5cc758678aca3d9e0cfe32a54e - 0.0% (194 Bytes)
[#007] sha256:f49f143b11d2ca10a1a5ec2385131728751a2313e4cbbd9df9b52880cc2e14e8 - 0.01% (4.3 KB)
/bin/sh -c #(nop) ADD file:d97e6c37df0fb8306b072d9c0a32f68f5aff583ba849303926644deacfa25eb9 in /
2021-01-28 23:41:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-01-29 01:28:50 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
2021-01-29 01:28:50 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-01-29 01:28:52 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-01-29 01:28:52 UTC/bin/sh -c #(nop) ENV PG_MAJOR=13
2021-01-29 01:28:53 UTC/bin/sh -c #(nop) ENV PG_VERSION=13.1
2021-01-29 01:28:53 UTC/bin/sh -c #(nop) ENV PG_SHA256=12345c83b89aa29808568977f5200d6da00f88a035517f925293355432ffe61f
2021-01-29 01:33:03 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 ; postgres --version
2021-01-29 01:33:11 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2021-01-29 01:33:12 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-01-29 01:33:12 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-01-29 01:33:14 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-01-29 01:33:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-01-29 01:33:14 UTC/bin/sh -c #(nop) COPY file:ad28506adc606e446eefc263bc99d4cb809e608d4f550956143bf13c82c91f85 in /usr/local/bin/
2021-01-29 01:33:15 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-01-29 01:33:15 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-01-29 01:33:15 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-01-29 01:33:16 UTC/bin/sh -c #(nop) CMD ["postgres"]