Tag

library/postgres:14.1-alpine3.15
Content Digest: sha256:578ca5c8452c08a4e0f5e65b55dce5e1812fe63c8fee40ea837641031598e51e
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:14.1-alpine3.15


Manifests
Details
Content Digest

sha256:b5da937b22c747c64b71e3f8706e1a7b8f4c147e3a371438ff0f22a7d965e4ae

Created

2022-01-04 01:39:02 UTC

Size

82.6 MB


Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:e6889e0d66307a4b916fc844f2dcbc03245c63bc4189dd3e88126d9dcf2f9231 - 3.26% (2.7 MB)

[#001] sha256:3af56146d51f459d9baa843fcf88ab0b80c1c9de99248bc2163f19197ba95d05 - 0.0% (1.25 KB)

[#002] sha256:87a14412d0e45405abe51e591c8467d465e5f91db0600bf8b9120d9c6f15217c - 0.0% (149 Bytes)

[#003] sha256:05215af247926ea5a60c089ddf00e2f80833a7767edf1b7a6a0b36ee1059cc03 - 96.72% (79.9 MB)

[#004] sha256:8cb3b7a89217e5316786ed386d58360f3326eb354511a24e5a2b9049f505ab69 - 0.01% (8.99 KB)

[#005] sha256:c20134057009a95df56cb285c10a0296c03c04655b9218763a099bfffdb56da9 - 0.0% (161 Bytes)

[#006] sha256:9e294d730704269d5abfdd8e8460114e7707d75a346213c45e7f66be5061d2b6 - 0.0% (194 Bytes)

[#007] sha256:ad994bf8c535175621b880a692b20ae3263347a763ae1e44ec716105cc768b54 - 0.01% (4.61 KB)


History
2021-11-24 20:53:48 UTC

/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 02:41:29 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-30 02:41:30 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-30 02:41:30 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-30 02:49:55 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 lz4-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 --with-lz4 ; 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 02:49:57 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 02:49:58 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2021-11-30 02:49:58 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-30 02:49:59 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-30 02:49:59 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2022-01-04 01:39:01 UTC

/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/

2022-01-04 01:39:01 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2022-01-04 01:39:01 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2022-01-04 01:39:01 UTC

/bin/sh -c #(nop) EXPOSE 5432

2022-01-04 01:39:02 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Content Digest

sha256:1149d285a5f5c4340cefa2211869c3a6b1128ac78974545e0b4fe62d3d0e66a8

Created

2022-01-04 01:20:03 UTC

Size

77.9 MB


Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:59bf1c3509f33515622619af21ed55bbe26d24913cedbca106468a5fb37a50c3 - 3.45% (2.69 MB)

[#001] sha256:c50e01d57241cf7ef93a91060f5eb0b895a4b443f20dc1ce5e77d441184a6dc2 - 0.0% (1.25 KB)

[#002] sha256:a0646b0f1eadaf0cd3fdb4c4490a69c4c7aed9b7ae10b24eb9005c59aa0b6e57 - 0.0% (148 Bytes)

[#003] sha256:7433e5151e0cee31a0d5b90433751e809eb3b860b250f73f0720f7d05788dc34 - 96.53% (75.2 MB)

[#004] sha256:8854018388d9035028f41a2c0494acf2868e2189888840026df2227cc4728a8d - 0.01% (8.99 KB)

[#005] sha256:8de463f7fd190f136a6f5cf50d5d8add707fd78d079d6391d952a02dcd40e412 - 0.0% (162 Bytes)

[#006] sha256:b39ee18abab98838412adb823af56cad2e732c25ac47da3ed4af92e41dbd2a7f - 0.0% (194 Bytes)

[#007] sha256:11d7473a0ff973b03640db89b7278d2694eb298a52a84ad71b4e14a1ce3de45f - 0.01% (4.61 KB)


History
2021-11-24 20:19:40 UTC

/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 04:59:35 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-30 04:59:35 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-30 04:59:36 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-30 05:08:14 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc 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 lz4-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 --with-lz4 ; 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:08: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 05:08:16 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:08:17 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-30 05:08:17 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-30 05:08:18 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2022-01-04 01:20:02 UTC

/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/

2022-01-04 01:20:02 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2022-01-04 01:20:02 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2022-01-04 01:20:02 UTC

/bin/sh -c #(nop) EXPOSE 5432

2022-01-04 01:20:03 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Content Digest

sha256:0d3320c8dff85b5e7e9b7d17b0f7882c6ab184c06d6c1ccd7525e2d9ea9a386a

Created

2022-01-04 01:49:46 UTC

Size

76 MB


Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:e4a43de54da9e309482f6762f0c11f5f547cd8fd61a49c5f158453066162023e - 3.3% (2.51 MB)

[#001] sha256:a865398e355d4d5f58fd1b16748daf1827598bdf1ba26c1d38fa7c8370d6705c - 0.0% (1.25 KB)

[#002] sha256:d879fc486c1bcf6d31fd2a8a5a4bc14acf4cc6f2d73e99dbf611ea8532bf4685 - 0.0% (149 Bytes)

[#003] sha256:64c198d08b66d0053af072a958242dfa61d12a03aa19b299704338a12ce3630d - 96.68% (73.5 MB)

[#004] sha256:890b949c0c0cb01e24cee04e26e9f08134c09347cb2a8d4bfbb58c25f581e199 - 0.01% (8.99 KB)

[#005] sha256:ea19d8e2535ab6b66815f4ec274a55f494434621fd4aca589facac83cd1b42e9 - 0.0% (162 Bytes)

[#006] sha256:145e200c687809399b7b195aeef1e9dc15fd2a679ca42c69ba8264732d4f5653 - 0.0% (195 Bytes)

[#007] sha256:ab3869ef6365cd7e574b0f1b9a947929d297d475b2997fb324de23f7f631bbc5 - 0.01% (4.62 KB)


History
2021-11-24 21:08:16 UTC

/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:39:20 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-30 04:39:20 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-30 04:39:21 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-30 04:44:26 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 lz4-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 --with-lz4 ; 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:44:29 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:44:30 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:44:31 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-30 04:44:32 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-30 04:44:33 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2022-01-04 01:49:45 UTC

/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/

2022-01-04 01:49:45 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2022-01-04 01:49:45 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2022-01-04 01:49:46 UTC

/bin/sh -c #(nop) EXPOSE 5432

2022-01-04 01:49:46 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Content Digest

sha256:05f71d8d5e404c18d946480473f368ff872b5182408604243b9a59cfd820089e

Created

2022-01-04 00:58:25 UTC

Size

71.6 MB


Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:5480d2ca1740c20ce17652e01ed2265cdc914458acd41256a2b1ccff28f2762c - 3.24% (2.32 MB)

[#001] sha256:f8f681d006162b865bd7dca8476d129c7fa1193b246ad8a598d27eb28769a6ac - 0.0% (1.25 KB)

[#002] sha256:c74eb577cd41aefd27e490e1cbe04812996920ee2af42f358c659d1bb8a40230 - 0.0% (149 Bytes)

[#003] sha256:a5f475e2f733cf6224e1fde5b4ff533086b46cd98e0fff0910ae3108439ec69c - 96.73% (69.2 MB)

[#004] sha256:768b048ebf0e53235268a769713cfd3aab8907ac25cf8a6afc7497cf6bec48fc - 0.01% (8.99 KB)

[#005] sha256:670d398449022b564d54a6f80ba3d14cb416cb967f03c5f088bb0f2f1c172b13 - 0.0% (162 Bytes)

[#006] sha256:3a7a9715973651a94bfa91355ed36504f30c911a38aab89dca9ad72dcad4801d - 0.0% (194 Bytes)

[#007] sha256:e9151e5e5e25022a77716758833ffc425a42763f8ede6908d8961e549e4d5113 - 0.01% (4.61 KB)


History
2021-11-24 21:42:11 UTC

/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 07:45:17 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-30 07:45:18 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-30 07:45:18 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-30 07:50:01 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 lz4-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 --with-lz4 ; 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 07:50: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 07:50: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 07:50:06 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-30 07:50:07 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-30 07:50:08 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2022-01-04 00:58:24 UTC

/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/

2022-01-04 00:58:24 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2022-01-04 00:58:24 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2022-01-04 00:58:25 UTC

/bin/sh -c #(nop) EXPOSE 5432

2022-01-04 00:58:25 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Content Digest

sha256:fd9ca23e1e2a6f29d18e90b15cf2a1d447f73fa0e50de19cd3de070c1e17cb50

Created

2022-01-04 01:40:32 UTC

Size

76.8 MB


Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:9b3977197b4f2147bdd31e1271f811319dcd5c2fc595f14e81f5351ab6275b99 - 3.37% (2.59 MB)

[#001] sha256:995a68b04f2b01f2160f500ef732a967a427af5da712fac9029eeecbc80af73d - 0.0% (1.23 KB)

[#002] sha256:e8a8bdf2ee5e8b95fdba44140b8595c955b8639595bcf5c0f15841330176d8e5 - 0.0% (115 Bytes)

[#003] sha256:d78bac00c4b0581e63f747cd34a0639630d0d06fa6c15f6af6c80346fc069057 - 96.61% (74.2 MB)

[#004] sha256:397d2c22089b15d366cafcb97f9e0023a98e6ee543ae9fdde3a9fe6fd06496d5 - 0.01% (8.98 KB)

[#005] sha256:e01e4761654c99e5163725b6c78ca946e96c04659191a4e591d18819f5a50a9a - 0.0% (129 Bytes)

[#006] sha256:36a475ba2413843cf4a55ba51b128ec3b27d3be263cc0758c97acaae790df8fc - 0.0% (170 Bytes)

[#007] sha256:e2cbd7bd4b25fb6d487b05873c21235401440dadd35d6908f8e4f99e24cac37a - 0.01% (4.61 KB)


History
2021-11-24 20:39:20 UTC

/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:27:21 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-30 04:27:22 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-30 04:27:23 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-30 04:30:47 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 lz4-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 --with-lz4 ; 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:30: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-30 04:30:48 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:30:49 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-30 04:30:50 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-30 04:30:51 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2022-01-04 01:40:29 UTC

/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/

2022-01-04 01:40:29 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2022-01-04 01:40:30 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2022-01-04 01:40:31 UTC

/bin/sh -c #(nop) EXPOSE 5432

2022-01-04 01:40:32 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Content Digest

sha256:88e7b2927365cecdbdf5548eb7af54d0cec89dc1667a9f660795a63dd2fa7185

Created

2022-01-04 01:17:36 UTC

Size

83.1 MB


Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:159b5dcb1717c815c76ff5ea1db730e18e8609c9090238e43282856db9e71f47 - 3.23% (2.68 MB)

[#001] sha256:f21143ce0a44ab602b12471d2a1cf95c5dcbc9d805bd8ede00e2766f24d295b5 - 0.0% (1.25 KB)

[#002] sha256:f5c45529781f9e932a9022851fca78ba53022920657aa14e0479b195cac40189 - 0.0% (149 Bytes)

[#003] sha256:082f674269b643d207b4ed8916b585e1fd60226e8f1f24b0fbe1f3caef0c2666 - 96.75% (80.4 MB)

[#004] sha256:3a2cbf5cce21c30ef37a205c180617741da33f863548d8e6c56972c7c2c4fd93 - 0.01% (8.99 KB)

[#005] sha256:5dad871b53de19187b47b930f05aaabbc5fbcdf93d931cc7e8bad82ca5400de8 - 0.0% (161 Bytes)

[#006] sha256:d8fd3865dfcf752368fbf79d19741d83b565ee4b58867e7dbefa81cd3ddaa7a2 - 0.0% (194 Bytes)

[#007] sha256:fc2e34d934e2204d8fa775bb0dfb793f8888bbb85814589b94a7d03c842a3d7f - 0.01% (4.62 KB)


History
2021-11-24 20:20:16 UTC

/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:27:08 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-30 04:27:11 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-30 04:27:16 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-30 04:31:57 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 lz4-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 --with-lz4 ; 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:32:11 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:32:20 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:32:22 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-30 04:32:31 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-30 04:32:33 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2022-01-04 01:17:24 UTC

/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/

2022-01-04 01:17:28 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2022-01-04 01:17:31 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2022-01-04 01:17:35 UTC

/bin/sh -c #(nop) EXPOSE 5432

2022-01-04 01:17:36 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Content Digest

sha256:7b840a3fc5386d39b901794d5cf3675f9d78adbf5b505c97173b7c33c9aa6e63

Created

2022-01-04 01:41:53 UTC

Size

79.2 MB


Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

14

PG_SHA256

4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

PG_VERSION

14.1


Layers

[#000] sha256:d6baca485f3d0f7c77221be60fbef5db014a5ef9d8f53db4a310c947c690d189 - 3.14% (2.49 MB)

[#001] sha256:96844042cfb587d09e525bf6890e267412ad5971e27ece4faa02e82f6fda3c87 - 0.0% (1.25 KB)

[#002] sha256:826ee6a78ec06ec30a73acc9c0f2337f744b77da2931a6e0c1d3efb35d76cfe6 - 0.0% (149 Bytes)

[#003] sha256:3879c79db4e64e43074dcd8e3a50882c90183275473afcf04d71b2cb7fdf0ee6 - 96.84% (76.7 MB)

[#004] sha256:fa7ee10d2160122ce0d1c35c2a89515ee5589b8c344ee0a409c809fba851eaa7 - 0.01% (8.99 KB)

[#005] sha256:b111fb524429d291dd88f2f1fabfd23539ec68f1253deb0f1af51802b5a9c45e - 0.0% (161 Bytes)

[#006] sha256:f6c4570141eaf4ec63d0d7223cd536694ffc5f5c4435c0549de290d3aaa3bdea - 0.0% (193 Bytes)

[#007] sha256:3b25dfa8b884284bb2b3fef26ff5769f4bf101632c9e936f5d9cdcaf129c0f0c - 0.01% (4.62 KB)


History
2021-11-24 20:41:23 UTC

/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 08:50:10 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=14

2021-11-30 08:50:10 UTC

/bin/sh -c #(nop) ENV PG_VERSION=14.1

2021-11-30 08:50:10 UTC

/bin/sh -c #(nop) ENV PG_SHA256=4d3c101ea7ae38982f06bdc73758b53727fb6402ecd9382006fa5ecc7c2ca41f

2021-11-30 08:53: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 lz4-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 --with-lz4 ; 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 08:53: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 08:53: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 08:53:06 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2021-11-30 08:53:07 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2021-11-30 08:53:07 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2022-01-04 01:41:52 UTC

/bin/sh -c #(nop) COPY file:47938193db10b0e9aae9be0bd406472270173615019c8d77803dfd2375e36221 in /usr/local/bin/

2022-01-04 01:41:52 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2022-01-04 01:41:52 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGINT

2022-01-04 01:41:52 UTC

/bin/sh -c #(nop) EXPOSE 5432

2022-01-04 01:41:53 UTC

/bin/sh -c #(nop) CMD ["postgres"]