2021-11-16 02:16:16 UTC
29.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2566eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
PG_VERSION10.19
[#000] sha256:5420e0d28c84ecb16748cb90cc6acf8e2a81dab10cb1f674f3eee8533e53c62a - 9.07% (2.7 MB)
[#001] sha256:a69c9882c88ce94760f0d36deed4d8f55228d1df726a3bc33021031f8922aa5a - 0.0% (1.25 KB)
[#002] sha256:2788bc110cff8f1594e3fabf8ae849a646240d7e3c7ce77b566583c4a66b5467 - 0.0% (148 Bytes)
[#003] sha256:f91fd24bc1758e653639619efaea9cbbac5563b76c78d1a415ada278cd33a04b - 90.88% (27 MB)
[#004] sha256:82cbef6f49382581251b5657355b491bf35bab9f639a6caaa70609a00f1af70a - 0.02% (7.54 KB)
[#005] sha256:8a4ecc4d1ef1972c669fd01847d5d9c82cb860ba00c7f15b03db762b3b6b26c9 - 0.0% (161 Bytes)
[#006] sha256:cad3a166719ed19c2ebd6f67518498ba1b35adcfdc0c927a0dc399ba5fbe1478 - 0.0% (195 Bytes)
[#007] sha256:0a7a86c36a103c52c8a3e891ef41292a6694a35bc9402fb98ce10df32d4367be - 0.02% (4.61 KB)
[#008] sha256:86b3e57bb73895e9a6c771d57a45aab1ead87187569c14bb5b6e647f159d5174 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:403428c2903dd9dea10d069185873cb2c2c3149c553797807c69f22aa3d12fe3 in /
2021-11-12 16:38:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 23:55:01 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-11-12 23:55:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 23:55:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 00:27:00 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-13 00:27:00 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-13 00:27:01 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-16 02:16:11 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev 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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu ; 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 }' | grep -v -e perl -e python -e tcl )"; 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-11-16 02:16:12 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-11-16 02:16:13 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:16:13 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:16:14 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:16:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:16:14 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:16:15 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-11-16 02:16:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:16:16 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:16:16 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:16:16 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 01:46:24 UTC
28.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2566eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
PG_VERSION10.19
[#000] sha256:97518928ae5f3d52d4164b314a7e73654eb686ecd8aafa0b79acd980773a740d - 9.35% (2.69 MB)
[#001] sha256:9f97b97dbe44d3d5922703b0d43a419416f14f7acfda692d113a7aa9b9721fe1 - 0.0% (1.25 KB)
[#002] sha256:1b95022c44c584684bb06e7baad164584f8952fb082bab4a0daf8dc9c4b803dd - 0.0% (149 Bytes)
[#003] sha256:56f4969648c1c572ea27f0a7cd3c48b280bc9d6581cd472667df85c02934f3a4 - 90.6% (26.1 MB)
[#004] sha256:873087b046a30b84bfdaf0e8353a556fabd0b8eff8066f26cb1a0dc5e951b015 - 0.03% (7.55 KB)
[#005] sha256:06a6d947c2c198ea8de758660b6d66cb4199ba632c15c3bd04692822cae62d35 - 0.0% (161 Bytes)
[#006] sha256:d6794ec70f65d39fecfbad50714de02b51f905d6a9ed4c54176c67ccde6eb88f - 0.0% (194 Bytes)
[#007] sha256:4315d91b89ea549cb795a2e7432e5edacb786aaec75e226a3fe13dffadbe05b9 - 0.02% (4.61 KB)
[#008] sha256:399ee0bc35333f74d1b1c631727cb3827cd0263e68c7acdf57a10e7a89a196f3 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:762c899ec0505d1a32930ee804c5b008825f41611161be104076cba33b7e5b2b in /
2021-11-12 17:19:45 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-13 05:06:01 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-11-13 05:06:01 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-13 05:06:02 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 05:33:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-13 05:33:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-13 05:33:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-16 01:46:19 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev 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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu ; 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 }' | grep -v -e perl -e python -e tcl )"; 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-11-16 01:46: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-11-16 01:46:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 01:46:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 01:46:22 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 01:46:22 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 01:46:23 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 01:46:24 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-11-16 01:46:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 01:46:24 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 01:46:24 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 01:46:24 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 02:15:09 UTC
27.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2566eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
PG_VERSION10.19
[#000] sha256:56afcfda5d78cc243287acbaad250c5e8c0f47aae620dd7c51985b0d3c9b2728 - 9.02% (2.51 MB)
[#001] sha256:0306bf867c1af5e86348eac10e572e5bbf7b1df7161b3237e6dbf067420ba562 - 0.0% (1.25 KB)
[#002] sha256:b273647972e23088da4f0aa3896b1e39e9c26c17f7239fe3fa6ca165b5190765 - 0.0% (149 Bytes)
[#003] sha256:5fc4df9b303b153deaf36977a5983b9794427217b0b257804e7267256cc43e3a - 90.93% (25.3 MB)
[#004] sha256:9a82749776a581baad0b7baac70bea2085b2c80cbfafc91343f92729dcb556e4 - 0.03% (7.54 KB)
[#005] sha256:5582cb0ca836fe74472c5fc1c7fcd5a7468816802cfcb758b5d282e6d2866a7a - 0.0% (161 Bytes)
[#006] sha256:54233a48618b077aa2f342c5def208b66c7386aa48fef6c35f1e39d8909ac45b - 0.0% (194 Bytes)
[#007] sha256:7621fb169440343f737818600c4aeba3b9ee328a6abd8e569fc753cdc7fa91b0 - 0.02% (4.61 KB)
[#008] sha256:fa0729cd6a154c828e5cc9733b0fcb605c7dcd65ca48a022a6aaaddedc100072 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:6daf1fe862c00673bf9cf4d7e20b0bf253a56e7fb8ed5e730a4466ab9186e18a in /
2021-11-12 16:49:44 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-13 00:23: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-11-13 00:23:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-13 00:23:43 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 00:44:48 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-13 00:44:48 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-13 00:44:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-16 02:14:59 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev 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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu ; 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 }' | grep -v -e perl -e python -e tcl )"; 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-11-16 02:15:01 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-11-16 02:15:03 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:15:03 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:15:05 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:15:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:15:06 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:15:08 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-11-16 02:15:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:15:09 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:15:09 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:15:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 02:31:56 UTC
26.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2566eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
PG_VERSION10.19
[#000] sha256:764d2e53e1a607f2d8261522185d5b9021ade3ec1a595664ee90308c00176899 - 8.7% (2.33 MB)
[#001] sha256:65aac23bae9dde4628b949f53b16460bf45bbe0cb93feb0ca4e699560ec405be - 0.0% (1.25 KB)
[#002] sha256:1c82e83b49adac505e95de3db74b7b3d754078880f57793b8cd1a81d5c456289 - 0.0% (149 Bytes)
[#003] sha256:38b21ead03e56567523a720f4fb85fb78d0cb629dcbd7dd8b3d3e59d69c1d55f - 91.25% (24.4 MB)
[#004] sha256:c8e40c1b36b4b58dfc5b02d29a63127a12035f7f97cde04b6e7b3695a1e32cc4 - 0.03% (7.55 KB)
[#005] sha256:fcb2bac28e8a5027300b7f62fc2cd49f1d6faa5bcdd8f039df0dd150e0d79a35 - 0.0% (161 Bytes)
[#006] sha256:ee0a335be964f0058f701bcac22bd4999d5856493dfae48374c292eb426219c5 - 0.0% (195 Bytes)
[#007] sha256:b25faba695f53e049779bc4b7be0f578e3a2ac40b8a5874690e8c5653da8b40b - 0.02% (4.61 KB)
[#008] sha256:1e8309fd104157db392537ece9a3ab8ff68a802b85313ffbd34f194ab55e5429 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:03e0720458c3475758bf4394afa56f2165198eb91e6e9581f7768e433744dd9b in /
2021-11-12 16:57:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 20:25:42 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-11-12 20:25:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 20:25:44 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-12 20:46:48 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-12 20:46:48 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-12 20:46:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-16 02:31:46 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev 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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu ; 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 }' | grep -v -e perl -e python -e tcl )"; 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-11-16 02:31:48 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-11-16 02:31:49 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:31:50 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:31:51 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:31:52 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:31:52 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:31:54 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-11-16 02:31:54 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:31:55 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:31:55 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:31:56 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 02:09:38 UTC
28.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2566eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
PG_VERSION10.19
[#000] sha256:be307f383ecc62b27a29b599c3fc9d3129693a798e7fcce614f09174cfe2d354 - 9.1% (2.59 MB)
[#001] sha256:736fbb41a17a3d331434d1ced1bbefaf60ce58df545c90a6d1dbfeec5eb9af41 - 0.0% (1.23 KB)
[#002] sha256:99566057aebae6d994d20c6ed9fa0b7e7cd103f58ddce64c9096b244ec9905a0 - 0.0% (115 Bytes)
[#003] sha256:204a9477ed5d952482146c366d321e1bdfb49429a0839b7c9fa1e868af4bfa4c - 90.86% (25.9 MB)
[#004] sha256:61e397c967f032eb1a69489ffaad4b3643c1c2c4a79ed57a6593610be164db26 - 0.03% (7.55 KB)
[#005] sha256:a24ef8e62ac9b81c8d613ac0506623c6359830f654bba9eaabf3e323f7c3d504 - 0.0% (130 Bytes)
[#006] sha256:d288339a2aa75b5cf90ae09cf7c2aa6bc298535a6cff6ed38cfd78cf26f711d1 - 0.0% (170 Bytes)
[#007] sha256:36ed396452e99ee1937697f2fc95b9ba156ebe2f2723af646275158e1c5e0202 - 0.02% (4.61 KB)
[#008] sha256:450ececc7097801a1029bac8af979d4b3dc4e7389df6eb2251782e5e085e6433 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:400c0466b29ccad54e0f6c0acef22542992828678c96693ef1f9f4d0551935d8 in /
2021-11-12 16:39:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 23:41:51 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-11-12 23:41:52 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 23:41:53 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 00:01:09 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-13 00:01:10 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-13 00:01:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-16 02:09:28 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev 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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu ; 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 }' | grep -v -e perl -e python -e tcl )"; 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-11-16 02:09:28 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-11-16 02:09:29 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 02:09:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 02:09:31 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 02:09:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 02:09:34 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 02:09:34 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-11-16 02:09:35 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 02:09:36 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 02:09:37 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 02:09:38 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 05:31:43 UTC
30.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2566eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
PG_VERSION10.19
[#000] sha256:72940440c1ab65eca4d38846164719ffde4b147543cc658d041407a925b13368 - 8.93% (2.69 MB)
[#001] sha256:e892d223635db5048d4e0f826cfa9094090c3aa12a15afc7fdd249d076ca3e80 - 0.0% (1.26 KB)
[#002] sha256:1443b2a29145c872139ba01a0f2ab1a45f154e89a612cdd03ded00d39d7e4875 - 0.0% (149 Bytes)
[#003] sha256:8d0c3eb8a225a02170dddcbf85369bee95edac4895d23fe2c8a7844885c92caf - 91.03% (27.4 MB)
[#004] sha256:046052214dbc198eb818069f7134fbf26b760b15f99ac9f01383a7f775214d55 - 0.02% (7.55 KB)
[#005] sha256:b27212d8c0842d3f9883e4ea79e3c6ed781116e4f5bd940dcdb67f905df11a6a - 0.0% (161 Bytes)
[#006] sha256:7ced7a8eb1ec4f885659bf50ca95af7463112f53774959817125801fa601bf7d - 0.0% (195 Bytes)
[#007] sha256:4e6fd4d5fb3bfbad13e73e6656d5e8fa9318eaf84641a59a66dbc666bab4a30c - 0.01% (4.61 KB)
[#008] sha256:d3516017cb1e93e1f44598ae706a4223e5476ddf12315e6ae1c773cc37a1dd10 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:4d45063079cb28a34f1e382fddb22f156ac99d5449aa05ed37cb653c1f7b80f2 in /
2021-11-12 21:18:01 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-13 14:19:29 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-11-13 14:19:31 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-13 14:19:42 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-13 14:43:42 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-13 14:43:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-13 14:43:50 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-16 05:30:30 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev 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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu ; 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 }' | grep -v -e perl -e python -e tcl )"; 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-11-16 05:30:43 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-11-16 05:30:54 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 05:31:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 05:31:11 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 05:31:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 05:31:17 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 05:31:26 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-11-16 05:31:29 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 05:31:34 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 05:31:38 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 05:31:43 UTC/bin/sh -c #(nop) CMD ["postgres"]
2021-11-16 01:57:47 UTC
28.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA2566eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
PG_VERSION10.19
[#000] sha256:817a13b0e05928f7491adbf1d2cf261ec35079112247bd03469bbe31156aca7c - 8.68% (2.49 MB)
[#001] sha256:c11d0e178e11b961bdeb7fbf4c5d37bdf95bead1a94bf7cb11c22318da7b0408 - 0.0% (1.25 KB)
[#002] sha256:013949685d6dbf2034fe35128fa32dead6dda85c74b516d4e075450693ad8cd7 - 0.0% (149 Bytes)
[#003] sha256:db451e018401ae3da050724b28598e180c0abd37f2d6615ba14f43e5a7529c9c - 91.27% (26.2 MB)
[#004] sha256:335d0149fb8ba44f65d2175561d469b8c533eef44da6b51ff41bed9c7c9bf01b - 0.03% (7.55 KB)
[#005] sha256:362f31ed77c6819e0a50f5dfae85c55fef192aaaed0645e5ec0d8a7e47c0f806 - 0.0% (161 Bytes)
[#006] sha256:fad5115bd32b61d6755a0492467395f0f0cc4d52cf275fd57d1f9470ab5ff227 - 0.0% (195 Bytes)
[#007] sha256:5280052c2a9691495863314d290db8f92723b9150d60b396c8012cc02aeae546 - 0.02% (4.61 KB)
[#008] sha256:42f213676eec6df2f8ebeec4890b1c838874765d348b299caa00e2d39b548cf7 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:7e0cf02b3f015b1a0f867c03b2902b85f2140be1cee7af63c23f367a487e4577 in /
2021-11-12 16:41:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-12 19:02:11 UTC/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql
2021-11-12 19:02:11 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-12 19:02:12 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-12 19:14:10 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-12 19:14:10 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-12 19:14:10 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-16 01:57:43 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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev 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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu ; 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 }' | grep -v -e perl -e python -e tcl )"; 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-11-16 01:57:44 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-11-16 01:57:45 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-16 01:57:45 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-16 01:57:46 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-16 01:57:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2021-11-16 01:57:46 UTC/bin/sh -c #(nop) COPY file:7bb2d643a5007a2573ce85b55b80b2ddaa7af3a038cba459ffbf2e367376ca53 in /usr/local/bin/
2021-11-16 01:57:46 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2021-11-16 01:57:47 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-11-16 01:57:47 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2021-11-16 01:57:47 UTC/bin/sh -c #(nop) EXPOSE 5432
2021-11-16 01:57:47 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.