docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:12.9-alpine3.15
sha256:a19d52543f4c985caade9d1a98160aec6cc85fa05e61980025f4df00b2bd2ab8
2022-01-04 01:39:31 UTC
80.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA25689fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
PG_VERSION12.9
[#000] sha256:e6889e0d66307a4b916fc844f2dcbc03245c63bc4189dd3e88126d9dcf2f9231 - 3.35% (2.7 MB)
[#001] sha256:3af56146d51f459d9baa843fcf88ab0b80c1c9de99248bc2163f19197ba95d05 - 0.0% (1.25 KB)
[#002] sha256:87a14412d0e45405abe51e591c8467d465e5f91db0600bf8b9120d9c6f15217c - 0.0% (149 Bytes)
[#003] sha256:cfbf9cfef42bedda1bbdb7b2dde79dd2d88cc71f24ecbdb58230ce155ea6803a - 96.63% (77.8 MB)
[#004] sha256:ffe85ca01f85708ca4d8cf1050a356afe790c1f63b94f5cfd1d3d64f25d28aa1 - 0.01% (8.48 KB)
[#005] sha256:768d04de36688061a8eebe8048ae28c7981002642c0f478977c966516214d94f - 0.0% (163 Bytes)
[#006] sha256:631b0d1d81d9efacf7bb213a1e31a64df1c5680e5faaadd499f7096d0ece413f - 0.0% (193 Bytes)
[#007] sha256:37748d752a7879793dd30227cdbf803bba844dd5b5729d79dcd028ee5cd1eab3 - 0.01% (4.61 KB)
/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 03:32:23 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2021-11-30 03:32:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.9
2021-11-30 03:32:24 UTC/bin/sh -c #(nop) ENV PG_SHA256=89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
2021-11-30 03:41:04 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 llvm-dev clang g++ 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 --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | 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 03:41:06 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 03:41:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2021-11-30 03:41:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 03:41:07 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 03:41:08 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:39:30 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:39:30 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:39:31 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:39:31 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:39:31 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:71f18539f11267ecad234ceeaeebb0b1ae1c7a25eb3bd8cd340874a789d12edf
2022-01-04 01:20:17 UTC
75.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA25689fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
PG_VERSION12.9
[#000] sha256:59bf1c3509f33515622619af21ed55bbe26d24913cedbca106468a5fb37a50c3 - 3.54% (2.69 MB)
[#001] sha256:c50e01d57241cf7ef93a91060f5eb0b895a4b443f20dc1ce5e77d441184a6dc2 - 0.0% (1.25 KB)
[#002] sha256:a0646b0f1eadaf0cd3fdb4c4490a69c4c7aed9b7ae10b24eb9005c59aa0b6e57 - 0.0% (148 Bytes)
[#003] sha256:45cbd5b44a2d1324bbb2f17a1892be62c24b9b8a3fd5ecf6af2bfd5ea12ccc2c - 96.44% (73.2 MB)
[#004] sha256:902601345251f62f040c763c3f1c385a65514164c1b1db2c2550cf481f60766e - 0.01% (8.49 KB)
[#005] sha256:ab80db796fc0720fb901b36bd25a3df9df71861348b55efbc60b263343beb73f - 0.0% (161 Bytes)
[#006] sha256:1d825ba7fe163bdf896f820e2a226fb5e9859dd5ff7144690b4aa8255bb2b7fe - 0.0% (195 Bytes)
[#007] sha256:91db3a1e8d17c07953bedd83dc2d591742a3dde4bbc236e9c348fce9312cf4a9 - 0.01% (4.61 KB)
/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:17:44 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2021-11-30 05:17:44 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.9
2021-11-30 05:17:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
2021-11-30 05:24: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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ 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 --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | 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:24:58 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:25: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:25:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 05:25:02 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 05:25:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:20:16 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:20:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:20:17 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:20:17 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:20:17 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ed2b536923158c835b4d3354029fc31fbffc070f142c865554c1381a9537ff4f
2022-01-04 01:50:20 UTC
74 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA25689fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
PG_VERSION12.9
[#000] sha256:e4a43de54da9e309482f6762f0c11f5f547cd8fd61a49c5f158453066162023e - 3.39% (2.51 MB)
[#001] sha256:a865398e355d4d5f58fd1b16748daf1827598bdf1ba26c1d38fa7c8370d6705c - 0.0% (1.25 KB)
[#002] sha256:d879fc486c1bcf6d31fd2a8a5a4bc14acf4cc6f2d73e99dbf611ea8532bf4685 - 0.0% (149 Bytes)
[#003] sha256:ddf36e5916351221ff4d5d7c8fc387ea67275c7767df510cb9e3b3c628242085 - 96.59% (71.5 MB)
[#004] sha256:17d6cc0ba8b47d6d78d89b77916b56c9f2eaf0939297cbdfab03ff349201e3b1 - 0.01% (8.49 KB)
[#005] sha256:b3a4e4da19b63cb50c8e919a699f866783790f0add7cb7dd0fb92f77b89d8cd9 - 0.0% (163 Bytes)
[#006] sha256:ed76e5dac26dc611ba00d837b96b9d252bae59cfa2bfc5ca169dd5a179ac6bdc - 0.0% (195 Bytes)
[#007] sha256:38ef1937b586392453999981050c072946e245d7b8463f6bf623f23fc1f478f6 - 0.01% (4.61 KB)
/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 04:50:33 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2021-11-30 04:50:33 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.9
2021-11-30 04:50:34 UTC/bin/sh -c #(nop) ENV PG_SHA256=89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
2021-11-30 04:56:02 UTC/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ 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 --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | 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:56:04 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:56:05 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:56:06 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:56:07 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:56:08 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:50:18 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:50:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:50:19 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:50:19 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:50:20 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:d718a68ebfbe810524d8dc8a9abc454c52104a121d3c07a4dc1f415ff3548566
2022-01-04 00:59:30 UTC
69.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA25689fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
PG_VERSION12.9
[#000] sha256:5480d2ca1740c20ce17652e01ed2265cdc914458acd41256a2b1ccff28f2762c - 3.33% (2.32 MB)
[#001] sha256:f8f681d006162b865bd7dca8476d129c7fa1193b246ad8a598d27eb28769a6ac - 0.0% (1.25 KB)
[#002] sha256:c74eb577cd41aefd27e490e1cbe04812996920ee2af42f358c659d1bb8a40230 - 0.0% (149 Bytes)
[#003] sha256:39dc3025184e965bd231f827714905a822d5075ec0e7f9e962729e36770a4976 - 96.64% (67.3 MB)
[#004] sha256:d8a95460aa2a2ec88040e501d1ca769a056c77d03ecc41502c4fd4a0eb937b24 - 0.01% (8.49 KB)
[#005] sha256:6ba6e6daec3d1453094c60b505712a66aa2d234319d865f02f60fe3b829ef701 - 0.0% (162 Bytes)
[#006] sha256:065a7059ee2618f691d40b6bfd08dd8b4f7fb2cfe6534d9829bbcaba15c34133 - 0.0% (195 Bytes)
[#007] sha256:d3d9e2ac0827f93c229847827e94a4af822bb724a16d9b7a9370ee10139364fc - 0.01% (4.62 KB)
/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 09:00:39 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2021-11-30 09:00:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.9
2021-11-30 09:00:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
2021-11-30 09:05: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 llvm-dev clang g++ 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 --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | 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:05: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:05:17 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:05:17 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 09:05:19 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 09:05:19 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 00:59:28 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 00:59:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 00:59:29 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 00:59:29 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 00:59:30 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:dcb3deb8406ea419807712a2e7e3f7f3ce5503fbfd1f0d6a30a2622b7929f5c8
2022-01-04 01:41:13 UTC
74.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA25689fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
PG_VERSION12.9
[#000] sha256:9b3977197b4f2147bdd31e1271f811319dcd5c2fc595f14e81f5351ab6275b99 - 3.46% (2.59 MB)
[#001] sha256:995a68b04f2b01f2160f500ef732a967a427af5da712fac9029eeecbc80af73d - 0.0% (1.23 KB)
[#002] sha256:e8a8bdf2ee5e8b95fdba44140b8595c955b8639595bcf5c0f15841330176d8e5 - 0.0% (115 Bytes)
[#003] sha256:23e32b9f30bb10fe2f1bc91ea9e8556477e6ea41ddc14290b97d98466385b0f6 - 96.52% (72.2 MB)
[#004] sha256:c5ecd5334b9ecfed8ddea40f4c08d9ce545a29fc835f852a3d64285af79a07ff - 0.01% (8.49 KB)
[#005] sha256:b69fc1973acfa2ff888ba6ff8256a1b1e28851b040f9937d1116fe92102716fd - 0.0% (128 Bytes)
[#006] sha256:6435a4255f0670e5fe3ef287b773f102e675c4e06f2b942947d1912a1ba86e1e - 0.0% (170 Bytes)
[#007] sha256:4c47f9c20caa9f57455be5e78803e91d39d3614f94fa7a93420f106cb8519d83 - 0.01% (4.61 KB)
/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 04:36:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2021-11-30 04:36:08 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.9
2021-11-30 04:36:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
2021-11-30 04:39: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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ 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 --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | 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:39:23 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:39:23 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:39:24 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:39:25 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:39:26 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:41:10 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:41:10 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:41:11 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:41:12 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:41:13 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:04771de4a68f5205c0e22312d96a6f74fc9df97a9d3a2f3c142b567f2cc1a810
2022-01-04 01:18:52 UTC
80.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA25689fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
PG_VERSION12.9
[#000] sha256:159b5dcb1717c815c76ff5ea1db730e18e8609c9090238e43282856db9e71f47 - 3.32% (2.68 MB)
[#001] sha256:f21143ce0a44ab602b12471d2a1cf95c5dcbc9d805bd8ede00e2766f24d295b5 - 0.0% (1.25 KB)
[#002] sha256:f5c45529781f9e932a9022851fca78ba53022920657aa14e0479b195cac40189 - 0.0% (149 Bytes)
[#003] sha256:508d8ab0c313b827bafdea1b6916c90a40196df8f9cb08b866f6acc386779ddc - 96.66% (78.2 MB)
[#004] sha256:19bdef1f3e5d0995648edb650c950e562491fa5546d620a23a2db20aa9b94dbc - 0.01% (8.49 KB)
[#005] sha256:f46469649c3783063a48dbbae225ba3d3c5686c422ff98ddb16d6c52d120942a - 0.0% (163 Bytes)
[#006] sha256:88642866d2cd3bd32a84d697caa97fd268b17f455b2644f61fec4c6f8fc130c6 - 0.0% (195 Bytes)
[#007] sha256:68241f0532028b1633a4034e7863b2fdca241baa58a456be8c8811df7c340baa - 0.01% (4.61 KB)
/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:43:10 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2021-11-30 04:43:11 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.9
2021-11-30 04:43:13 UTC/bin/sh -c #(nop) ENV PG_SHA256=89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
2021-11-30 04:47:20 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 llvm-dev clang g++ 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 --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | 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:47:27 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:47:32 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:47:35 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 04:47:39 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 04:47:41 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:18:43 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:18:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:18:49 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:18:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:18:52 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:1edea843d81c684ff5439eca8b1b7c5474ebda6a7da822964a20257799d56630
2022-01-04 01:42:24 UTC
77.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR12
PG_SHA25689fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
PG_VERSION12.9
[#000] sha256:d6baca485f3d0f7c77221be60fbef5db014a5ef9d8f53db4a310c947c690d189 - 3.22% (2.49 MB)
[#001] sha256:96844042cfb587d09e525bf6890e267412ad5971e27ece4faa02e82f6fda3c87 - 0.0% (1.25 KB)
[#002] sha256:826ee6a78ec06ec30a73acc9c0f2337f744b77da2931a6e0c1d3efb35d76cfe6 - 0.0% (149 Bytes)
[#003] sha256:1a6d4e6a3f198e2a478854338774252fb0cabf06b369504aa25143ea94e4b248 - 96.76% (74.6 MB)
[#004] sha256:fbeeb522f92b66a0160bfda9468e5b29bfe6f95b8ae6421b509ad98fcaa89379 - 0.01% (8.48 KB)
[#005] sha256:4595c025b340bb8ce6086b08c8ab604d8247b8dcc6398939171f0a8d53224f1b - 0.0% (161 Bytes)
[#006] sha256:611de700ed4e5262462ce668481cdba795109d0e16327dfd40b88f21c4b386b4 - 0.0% (194 Bytes)
[#007] sha256:ff71ab07616b97a84871aab313b68fcdf9516918a44ab2b6c89d3d0f406cd367 - 0.01% (4.62 KB)
/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:12:05 UTC/bin/sh -c #(nop) ENV PG_MAJOR=12
2021-11-30 09:12:05 UTC/bin/sh -c #(nop) ENV PG_VERSION=12.9
2021-11-30 09:12:06 UTC/bin/sh -c #(nop) ENV PG_SHA256=89fda2de33ed04a98548e43f3ee5f15b882be17505d631fe0dd1a540a2b56dce
2021-11-30 09:14: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 krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ 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 --with-llvm ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | 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:14:53 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:14:54 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:14:54 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2021-11-30 09:14:55 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2021-11-30 09:14:55 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2022-01-04 01:42:24 UTC/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/
2022-01-04 01:42:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2022-01-04 01:42:24 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2022-01-04 01:42:24 UTC/bin/sh -c #(nop) EXPOSE 5432
2022-01-04 01:42:24 UTC/bin/sh -c #(nop) CMD ["postgres"]