2022-01-04 01:40:14 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:e6889e0d66307a4b916fc844f2dcbc03245c63bc4189dd3e88126d9dcf2f9231 - 9.05% (2.7 MB)
[#001] sha256:3af56146d51f459d9baa843fcf88ab0b80c1c9de99248bc2163f19197ba95d05 - 0.0% (1.25 KB)
[#002] sha256:87a14412d0e45405abe51e591c8467d465e5f91db0600bf8b9120d9c6f15217c - 0.0% (149 Bytes)
[#003] sha256:a615b74e142c44d8f80201cef95094aeffedb200ab35c0f8caab9216ef92b802 - 90.9% (27.1 MB)
[#004] sha256:992fdc3b2005feb2aba74d964af283ebe784de992b0239a61c7e1b29f96c7ace - 0.02% (7.55 KB)
[#005] sha256:90b38daa9a1bc71edeb3fcc531916b428ec321f3ad6b49421536780fa4cef524 - 0.0% (161 Bytes)
[#006] sha256:d462ddbd2830a4f7086deb21130ffac256263cef47639f2dc9b93d9d25a5b260 - 0.0% (195 Bytes)
[#007] sha256:15785b77c958ba5e914032fdcad20f38d6ccd404e0ca61faa7caf26d656c70a9 - 0.02% (4.62 KB)
[#008] sha256:b4de2af06955e7f9036254f0856f1d6a8f575accfc7b1f50236b524ab68f913d - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:b9a17131c440053f2f67e127b447645f25fd7de2d6caca42f569cafab6291855 in /
2021-11-24 20:53:48 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 02:41:28 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-30 02:41:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 02:41:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 04:17:10 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-30 04:17:11 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-30 04:17:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-30 04:21:16 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-30 04:21:18 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-30 04:21:19 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 04:21:19 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:21:20 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:21:20 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:40:12 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:40:13 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:40:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:40:13 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:40:14 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:40:14 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:20:40 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:59bf1c3509f33515622619af21ed55bbe26d24913cedbca106468a5fb37a50c3 - 9.33% (2.69 MB)
[#001] sha256:c50e01d57241cf7ef93a91060f5eb0b895a4b443f20dc1ce5e77d441184a6dc2 - 0.0% (1.25 KB)
[#002] sha256:a0646b0f1eadaf0cd3fdb4c4490a69c4c7aed9b7ae10b24eb9005c59aa0b6e57 - 0.0% (148 Bytes)
[#003] sha256:a8db42230a86b0d99001c0503bd00d1a55b374f941359ffd13ae2b3290cc5644 - 90.62% (26.1 MB)
[#004] sha256:459902510c35a1a636af2871a6f716dbd60a58ec067a434cf61e1ab6e2912888 - 0.03% (7.55 KB)
[#005] sha256:2e477e03119b53286fc7f01a9901ebc4f60108ea5e42fa08904838648966893d - 0.0% (161 Bytes)
[#006] sha256:7e2774e5747aadc33a62e2e1a9a7d486805b9e19bf5937a46eb54cd20c3a978f - 0.0% (193 Bytes)
[#007] sha256:a564494ccac32b742cbd43171b522e57e2472b46ed72a51ebf71c4365606b735 - 0.02% (4.61 KB)
[#008] sha256:465ed77e60e6e0a3ae2026d46832c438c3096ccf3f9f3636c24bc08f6ec76fe9 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:9233f6f2237d79659a9521f7e390df217cec49f1a8aa3a12147bbca1956acdb9 in /
2021-11-24 20:19:40 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:59:34 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-30 04:59:34 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:59:35 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:35:39 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-30 05:35:39 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-30 05:35:39 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-30 05:38:58 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-30 05:38: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-11-30 05:39:00 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:39:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:39:01 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:39:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:20:38 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:20:39 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:20:39 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:20:39 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:20:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:20:40 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:50:52 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:e4a43de54da9e309482f6762f0c11f5f547cd8fd61a49c5f158453066162023e - 8.99% (2.51 MB)
[#001] sha256:a865398e355d4d5f58fd1b16748daf1827598bdf1ba26c1d38fa7c8370d6705c - 0.0% (1.25 KB)
[#002] sha256:d879fc486c1bcf6d31fd2a8a5a4bc14acf4cc6f2d73e99dbf611ea8532bf4685 - 0.0% (149 Bytes)
[#003] sha256:3d0ba0b321589f2a2041fbe3aa97169fe5576520d42530958990c5032ffe8fe7 - 90.96% (25.4 MB)
[#004] sha256:deeaabdc2050de8f7f8e18c0c2cb3264241d712b3b004f196b99af70aeec570f - 0.03% (7.55 KB)
[#005] sha256:f845d52879439c37342798cfe71d298aefbd327360e6b7f35602a43c466d3e65 - 0.0% (161 Bytes)
[#006] sha256:6a43babe31a8691c7ddd60e6d20a3f38296241a8456f48642e1f8699da218b05 - 0.0% (194 Bytes)
[#007] sha256:d782764cbc5ce347d98ed879b223aed0e8aed5b8fc5d67b2c0e4eb8a7dab11b4 - 0.02% (4.62 KB)
[#008] sha256:ebaa37b6f513e90682be647410887da78b339152747a533613346003361161f9 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:61137e0aa49ba06f57ac69466fe2fb116f580b5e6159d56f846b1d72c4a3c814 in /
2021-11-24 21:08:16 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:39:17 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-30 04:39:18 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:39:19 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:02:05 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-30 05:02:05 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-30 05:02:06 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-30 05:05: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-30 05:06: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-30 05:06:03 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:06:03 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:06:05 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:06:05 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:50:49 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:50:50 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:50:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:50:51 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:50:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:50:52 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:01:03 UTC
26.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:5480d2ca1740c20ce17652e01ed2265cdc914458acd41256a2b1ccff28f2762c - 8.67% (2.32 MB)
[#001] sha256:f8f681d006162b865bd7dca8476d129c7fa1193b246ad8a598d27eb28769a6ac - 0.0% (1.25 KB)
[#002] sha256:c74eb577cd41aefd27e490e1cbe04812996920ee2af42f358c659d1bb8a40230 - 0.0% (149 Bytes)
[#003] sha256:bb451920a5dea8eda98c586db15f46332bf14589552da90613d699413d5f9c65 - 91.28% (24.4 MB)
[#004] sha256:b20e730291b2f0116c68ee90395880e482f0ae6cd55947d854c0b925ac08a6ad - 0.03% (7.55 KB)
[#005] sha256:4525a130dfcc5c6fb3f5e1d8be2fee901b2628c9b2c78dee82c9afe142b27f22 - 0.0% (161 Bytes)
[#006] sha256:7841e79a4169b7709c63dc8299db4b05fcd7b3481103eb39dbcb51954a873e25 - 0.0% (194 Bytes)
[#007] sha256:fec89b2e3baa9035869b2f1cff6c2f9b53446bacbe56d0388349f9515f871a2a - 0.02% (4.61 KB)
[#008] sha256:e5f66faca094852c427119dd4be789ab728932f346c27f44f6f57c6af5497471 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:ca436da5b0bfc9c0e2fc685533c6628918000c8fff109fe9a8da625b9a798002 in /
2021-11-24 21:42:11 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 07:45:15 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-30 07:45:15 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 07:45:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 10:50:26 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-30 10:50:26 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-30 10:50:26 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-30 10:54:00 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-30 10:54:02 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-30 10:54:03 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 10:54:04 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 10:54:05 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 10:54:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:00:59 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:01:01 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:01:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:01:02 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:01:02 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:01:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:42:14 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:9b3977197b4f2147bdd31e1271f811319dcd5c2fc595f14e81f5351ab6275b99 - 9.08% (2.59 MB)
[#001] sha256:995a68b04f2b01f2160f500ef732a967a427af5da712fac9029eeecbc80af73d - 0.0% (1.23 KB)
[#002] sha256:e8a8bdf2ee5e8b95fdba44140b8595c955b8639595bcf5c0f15841330176d8e5 - 0.0% (115 Bytes)
[#003] sha256:1ebc4d347b54f4a91b22daa54dcaac75bd01de57840281093636fe0914aa0d9f - 90.87% (25.9 MB)
[#004] sha256:6b3dbdc5cac4133e3d0db0b7c0e599397e38cc0b51152476fa7a9b7cf0c73ab3 - 0.03% (7.55 KB)
[#005] sha256:b1466ea51568061522c25d0234ca240c2d597d5c0656d2011f0da0105bef5717 - 0.0% (130 Bytes)
[#006] sha256:9f0e4a4c8440d4dc0de2d53aa79e89a93f78225dc795b78bd5df6afe4cee7e56 - 0.0% (173 Bytes)
[#007] sha256:2939f25b3f28a1bed2d094cfb8c0bf6769b496af8aa0513736bb17866495b787 - 0.02% (4.61 KB)
[#008] sha256:767b1b5017b6c5950855e3fee625023a066a631261443aa3ff549a0e5fcddcef - 0.0% (118 Bytes)
/bin/sh -c #(nop) ADD file:df53811312284306901fdaaff0a357a4bf40d631e662fe9ce6d342442e494b6c in /
2021-11-24 20:39:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:27:18 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-30 04:27:19 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:27:20 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 05:03:40 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-30 05:03:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-30 05:03:42 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-30 05:06:07 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-30 05:06:07 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-30 05:06:08 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 05:06:09 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:06:10 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:06:11 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:42:10 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:42:10 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:42:11 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:42:12 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:42:13 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:42:14 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:20:00 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:159b5dcb1717c815c76ff5ea1db730e18e8609c9090238e43282856db9e71f47 - 8.92% (2.68 MB)
[#001] sha256:f21143ce0a44ab602b12471d2a1cf95c5dcbc9d805bd8ede00e2766f24d295b5 - 0.0% (1.25 KB)
[#002] sha256:f5c45529781f9e932a9022851fca78ba53022920657aa14e0479b195cac40189 - 0.0% (149 Bytes)
[#003] sha256:327d17e4cd9adbdae07d13b6627bddd87959672bc228af26a2f2a59dd4bc192a - 91.04% (27.4 MB)
[#004] sha256:f309816b3009bda1e0bda54e9cb318cef6132560421edee4b208b7d56469d7da - 0.02% (7.55 KB)
[#005] sha256:1a75160983fd1fff7e750ed55159164a2c42e764d4dc0e01fdbc847292ac2820 - 0.0% (162 Bytes)
[#006] sha256:d340318bc3d494a39181b2bcd27da54d8ac3ac23104e8f3023af6e60d848eee4 - 0.0% (195 Bytes)
[#007] sha256:c4e70fedc577ce0972857d1037735e6ac89dfbd9334ed8cb4576037f6fd2092b - 0.01% (4.61 KB)
[#008] sha256:f621dffedc27c1b87a5b847240666df53929c2932d14dfe4c50dfec3a17363cc - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:57115dca2eb707f46b6301e75174e6aa316fb02ac28643b91429b75be51bd8c8 in /
2021-11-24 20:20:20 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 04:26:49 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-30 04:26:53 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 04:27:03 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 04:56:09 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-30 04:56:10 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-30 04:56:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-30 04:59: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-30 04:59:26 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-30 04:59:34 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 04:59:36 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:59:45 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:59:47 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:19:46 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:19:53 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:19:55 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:19:56 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:19:58 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:20:00 UTC/bin/sh -c #(nop) CMD ["postgres"]
2022-01-04 01:42:54 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:d6baca485f3d0f7c77221be60fbef5db014a5ef9d8f53db4a310c947c690d189 - 8.66% (2.49 MB)
[#001] sha256:96844042cfb587d09e525bf6890e267412ad5971e27ece4faa02e82f6fda3c87 - 0.0% (1.25 KB)
[#002] sha256:826ee6a78ec06ec30a73acc9c0f2337f744b77da2931a6e0c1d3efb35d76cfe6 - 0.0% (149 Bytes)
[#003] sha256:13b93836b3e1af3b4145502502170274b1e7a9cfc1592239c7b8f72a7d8392e9 - 91.3% (26.2 MB)
[#004] sha256:67199b2ee215e02e89d70eb169887658de8e3b6792eb9a49893128df851fd502 - 0.03% (7.55 KB)
[#005] sha256:6bee58d0612a0b950afc57b5ef77c910c3501fe9f539d083a23cffc55e5b2395 - 0.0% (160 Bytes)
[#006] sha256:3e2ec6b650e1fe844a42bbbea94c2591df2238ecc98102e1ffa392d1c0f8ebf8 - 0.0% (194 Bytes)
[#007] sha256:ce80179d1c787fffb4c1bc96460ee4c8899a35b87c29b157bd6a85ad42d85204 - 0.02% (4.61 KB)
[#008] sha256:5fd5374ed53ba059ede99c86ef2a123702c44a8b1f8f67a359d738a17656b6a8 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:cd24c711a2ef431b3ff94f9a02bfc42f159bc60de1d0eceecafea4e8af02441d in /
2021-11-24 20:41:23 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2021-11-30 08:50:09 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-30 08:50:09 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2021-11-30 08:50:10 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2021-11-30 09:33:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2021-11-30 09:33:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.19
2021-11-30 09:33:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=6eb830b428b60e84ae87e20436bce679c4d9d0202be7aec0e41b0c67d9134239
2021-11-30 09:35:13 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-30 09:35:15 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-30 09:35:15 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 09:35:15 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 09:35:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 09:35:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:42:53 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:42:53 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2022-01-04 01:42:53 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:42:54 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:42:54 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:42:54 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.