2021-08-06 22:22:53 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.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:935703e1179e32e201e4a36d5664d58299dc8e7bcac197b70c295c0a59216db1 - 18.54% (2.69 MB)
[#001] sha256:d7c05efe598158ae45c83841ac5ec7934faa5d733f5fcfe85b0261cf9c987262 - 0.01% (1.26 KB)
[#002] sha256:1bf37feeefc8b50739451550bcd2f9738e9369d3eea1e7c8fe5fbd0ee22ba530 - 0.0% (149 Bytes)
[#003] sha256:47ad477ef0b95e313e80745cbbbd5590c76cf10ed1f8411fd416820cb50d09a6 - 81.37% (11.8 MB)
[#004] sha256:643365d4a04c8a0edd2bea1395d004257259cd0722685e87855fe40c0660e0b2 - 0.05% (7.35 KB)
[#005] sha256:fd5ab33ecff06f319caccba4cc89fd2fab5fa09145277f5a1a9054a9d9f4a3f4 - 0.0% (161 Bytes)
[#006] sha256:4f2a2407e5b46c5ffaecdf4792127006b9c69a6b172a86adc4751a9aa1a7a13a - 0.0% (193 Bytes)
[#007] sha256:76ad333c0ec5a9dac0fdbcf663c44125d19c905979ddc1099061c462667866a8 - 0.03% (4.3 KB)
[#008] sha256:5795a10c8ea4cfe58f7940d2d80dc6a4c4ce94c7ccf071fb2e9bc72e2ddd35bb - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:bafaec4a54d6cef99b5f3660d074a3d2251e4d4bd09df9ea65f33e9bffb7d88d in /
2021-08-06 17:38:26 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-06 21:44:56 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-08-06 21:44:57 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-06 21:44:57 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-06 22:17:47 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-08-06 22:17:47 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-08-06 22:17:48 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-08-06 22:22:48 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 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 ; postgres --version
2021-08-06 22:22:49 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-08-06 22:22:50 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-06 22:22:50 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-06 22:22:51 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-06 22:22:51 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-06 22:22:51 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-08-06 22:22:52 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-06 22:22:53 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-06 22:22:53 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-06 22:22:53 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-06 22:22:53 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-06 20:48:06 UTC
13.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:29291e31a76a7e560b9b7ad3cada56e8c18d50a96cca8a2573e4f4689d7aca77 - 19.28% (2.68 MB)
[#001] sha256:c7f8a1ea71cb44639c871a69f095baa1737555205a3ea7ce92b116c1462ffc37 - 0.01% (1.25 KB)
[#002] sha256:64d8912b293dcd54c830c025ee7d3c1e3774037bc917800fc4db4a04959855ca - 0.0% (149 Bytes)
[#003] sha256:0ed4f81c6f98defa89a871a7b8ac14b5e7399a9b4a8df6f8345bf3c7e1c3def1 - 80.63% (11.2 MB)
[#004] sha256:3c740f88838aaab7a1c2ce1a20c4d36071c1f376e098a57144097a940a1a65d2 - 0.05% (7.35 KB)
[#005] sha256:8f48f5077e915b5ca15070c2761afbd9261cbd86d2ffa6bee2f3c7820cd29852 - 0.0% (161 Bytes)
[#006] sha256:a51010a14056c5c0feb258cac5799278a3eb3da7638c8cd7176bcf3d58853215 - 0.0% (195 Bytes)
[#007] sha256:912916c23c5a81089235568688fbac33be600309649627a0234e419ac2e01ba5 - 0.03% (4.31 KB)
[#008] sha256:916567826497156ebe343a3a63d9ac04c680cd0aea3830175cabafc5738c587c - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:34eb5c40aa00028921a224d1764ae1b1f3ef710d191e4dfc7df55e0594aa7217 in /
2021-08-06 17:19:45 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-06 20:09:36 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-08-06 20:09:36 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-06 20:09:37 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-06 20:44:21 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-08-06 20:44:22 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-08-06 20:44:22 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-08-06 20:47:56 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 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 ; postgres --version
2021-08-06 20:47:59 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-08-06 20:48:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-06 20:48:01 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-06 20:48:03 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-06 20:48:03 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-06 20:48:04 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-08-06 20:48:05 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-06 20:48:05 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-06 20:48:06 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-06 20:48:06 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-06 20:48:06 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-06 22:02:48 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.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:f465bb3e9fcd0c42f936ecc566c6e40353c00f3089b2b2c2ea1663c30f89d3ab - 18.76% (2.5 MB)
[#001] sha256:a9894594f46e7a2d9314f2f96a83a8a4d069c1c3d3bd1f20f7378ea4a36eb000 - 0.01% (1.25 KB)
[#002] sha256:e1d885209ac2857981e19ce7ccfb1852b335ed57fd0d8020badbc76323c3a5c3 - 0.0% (149 Bytes)
[#003] sha256:fe4e4f9aaa5f90cafedc817f899100fc086e6a5a5002e357090fb9ec35a18d3e - 81.15% (10.8 MB)
[#004] sha256:0da4a015bdc7f1be921915a11bc3d41b91d820564515f0994e1f19cdfd4f6120 - 0.05% (7.35 KB)
[#005] sha256:50708f202a552aedb1ec3f7cb21ceea822ee77360f8cf5ac0ff1ecf17503c543 - 0.0% (162 Bytes)
[#006] sha256:ba7ab851a6c2eb07f3e043aa4b708fce8c1bc6c8e9a012282ba35d5af4ff6d7e - 0.0% (194 Bytes)
[#007] sha256:634c586d81c58f8d4ae506e296fcc0ae6762d476a7bd3cae0b432d0aadf12abc - 0.03% (4.31 KB)
[#008] sha256:dfe5601fc196f084f9c869f1f18e497a3eb0000fa5232e982f700fad4c0bf89e - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:7f2c7deda009eabdcbbdccb11e854043d32c498e64e7e1ca02165d7bb4261d39 in /
2021-08-06 17:49:32 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-06 21:34:10 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-08-06 21:34:11 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-06 21:34:12 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-06 21:59:21 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-08-06 21:59:21 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-08-06 21:59:22 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-08-06 22:02:38 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 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 ; postgres --version
2021-08-06 22:02:40 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-08-06 22:02:42 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-06 22:02:42 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-06 22:02:44 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-06 22:02:44 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-06 22:02:45 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-08-06 22:02:46 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-06 22:02:47 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-06 22:02:47 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-06 22:02:47 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-06 22:02:48 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-07 01:36:28 UTC
12.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.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:4ee0caa23b369b04827640a4be298bf4ff7bacd030c77e915f5d7fb8f987594a - 18.49% (2.32 MB)
[#001] sha256:0cef58414db85950184ccfaaf047c5260d938c1ed132eb394e7dcc08e421dc3e - 0.01% (1.25 KB)
[#002] sha256:d99a5114dc9bd4eaae87d214120cfd9ac233204ed1fdf161fad160f52db1439a - 0.0% (149 Bytes)
[#003] sha256:79ae97ea372e851801de9caca89e071bd6e81c139fd7f1a2037ed51d5fd8a5cf - 81.4% (10.2 MB)
[#004] sha256:bc720a3e2e72af8ed886c96948a84bbd8b807978939806424118c2f65f52df1e - 0.06% (7.35 KB)
[#005] sha256:c0a761732e3438c2a1ef4fa5b7fa90e6dca79090aaf39a35b9fa0f6569094099 - 0.0% (161 Bytes)
[#006] sha256:3a0a3e99385ea0d9007f53671af449ee4e2b6b91529e6804638e6215395fe735 - 0.0% (195 Bytes)
[#007] sha256:f94d665d87cfa774a23dc0c99b626be12748eb701a4b3517e82a6073127fbf42 - 0.03% (4.3 KB)
[#008] sha256:160aba9be4d00bf778dd952e62998f441ea67c8e039fc83e63586a439ae6796f - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:3a35ff3ac0d80289d419a4d6d8319610c38e1936d296addafb9aaf506946230f in /
2021-08-06 17:57:32 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-07 01:08:14 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-08-07 01:08:14 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-07 01:08:16 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-07 01:33:09 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-08-07 01:33:09 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-08-07 01:33:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-08-07 01:36:18 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 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 ; postgres --version
2021-08-07 01:36:20 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-08-07 01:36:22 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-07 01:36:22 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-07 01:36:24 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-07 01:36:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-07 01:36:25 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-08-07 01:36:26 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-07 01:36:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-07 01:36:27 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-07 01:36:28 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-07 01:36:28 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-07 00:44:26 UTC
13.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:fd3acdcea5682abced546ec19fb6ebee725c5184e5d91614c469c0a79e67f2d0 - 18.95% (2.59 MB)
[#001] sha256:ba97523f916fd8acc76ccd9aaafa6ef7f9adf2d2ae821e4b8c2a4a3ce78db610 - 0.01% (1.26 KB)
[#002] sha256:ef888e85bfc8313834349d662d946b19b67e6a6fb705c484d91b83be6a9b76d8 - 0.0% (149 Bytes)
[#003] sha256:52946f8419b94675bc0d3fc36e940e3159a2e5937bb8dc274e206e0277c2fb90 - 80.95% (11 MB)
[#004] sha256:a19203fc865bd54f2ba12b68a053faaf0d6ff1b40f24f8878ef7ee2d1dc41bc2 - 0.05% (7.35 KB)
[#005] sha256:28e6505e0e36a373dd1936c39444a75435c8713d1488fc7a04bc8d6e3c5aa9bf - 0.0% (162 Bytes)
[#006] sha256:cd3c7dc4e79c67b4a0fc16d6b320852031f4898f71ad7353d5989126dcb942d9 - 0.0% (193 Bytes)
[#007] sha256:e5f65ad61a5775d1e086c75e77339e8e36ac610fe404341a264f2973936e68d3 - 0.03% (4.3 KB)
[#008] sha256:7bf18664004e8077ca8c17f4007d10997a8ca3238f160395d0e41b1133762259 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:1a8fd1066485e1261462e689c1a072f010c1d3be904b73ef2b84128fac652951 in /
2021-08-06 17:39:27 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-07 00:19:26 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-08-07 00:19:26 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-07 00:19:27 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-07 00:41:31 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-08-07 00:41:31 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-08-07 00:41:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-08-07 00:44:22 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 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 ; postgres --version
2021-08-07 00:44:22 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-08-07 00:44:23 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-07 00:44:23 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-07 00:44:24 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-07 00:44:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-07 00:44:24 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-08-07 00:44:25 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-07 00:44:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-07 00:44:25 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-07 00:44:26 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-07 00:44:26 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-08-07 01:11:27 UTC
15 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2563d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
PG_VERSION9.6.22
[#000] sha256:0ff902055236f70c4694c806877243e1dd52c513825a2a3ecc7eba8f5202acc8 - 17.9% (2.68 MB)
[#001] sha256:0171836c388de004e05625d2d3ef11aca08f84a644c0e3556f407e3faa45b35b - 0.01% (1.25 KB)
[#002] sha256:4f2c96cc7a2637602e04a8006bc17a2ef71621e55b1d19adb54611e9ae383651 - 0.0% (149 Bytes)
[#003] sha256:91b34bd905ef1823d368a2563f97ea9734a79ead0e40b92c122ba98209fb51d5 - 82.01% (12.3 MB)
[#004] sha256:1790deda1ffbf52fe9aaa48232ea0d9b6c143e0d17767ef59818351b5b269325 - 0.05% (7.36 KB)
[#005] sha256:e4750366c3d4a58110a7fbfe64a0b515cff1cf5471a082ce5ff4d93c2c7ed480 - 0.0% (162 Bytes)
[#006] sha256:ba062182da1c0d41f51bce6e7b1a01d8e040e8257e1eada4a3333c979e43f384 - 0.0% (195 Bytes)
[#007] sha256:6a4d398c670be2be4b9f16efea79d58772961d3810d9ec0dd1799009160dc452 - 0.03% (4.3 KB)
[#008] sha256:59d9ad8392984d6462ab6d4a0108eb40738e5d9b625f5e32a4ff130054966fa5 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:40f3b617d7ff269d92f0ffcf8aad561b5f2c0626ef519a7f584f1ba0182b3188 in /
2021-08-06 18:28:35 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-08-07 00:39:16 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-08-07 00:39:27 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-08-07 00:39:50 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-08-07 01:07:39 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2021-08-07 01:07:42 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.22
2021-08-07 01:07:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=3d32cd101025a0556813397c69feff3df3d63736adb8adeaf365c522f39f2930
2021-08-07 01:10: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 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 ; postgres --version
2021-08-07 01:10:38 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2021-08-07 01:10:48 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-08-07 01:10:52 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-08-07 01:11:00 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-08-07 01:11:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-08-07 01:11:03 UTC/bin/sh -c #(nop) COPY file:e881105b30bb0f1591c0f7f6dfe19bf5351d029d5babae597d2698e04a16ec8b in /usr/local/bin/
2021-08-07 01:11:09 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-08-07 01:11:14 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-08-07 01:11:15 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-08-07 01:11:20 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-08-07 01:11:27 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.