Tag

library/postgres:alpine3.15
Content Digest: sha256:a00af33e23643f497a42bc24d2f6f28cc67f3f48b076135c5626b2e07945ff9c
Details
Pull Command

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


Manifests
Details
Content Digest

sha256:54293d24e5aeb8e095371bad3a74bd9206f8339321c2de01c36767175c41e30f

Created

2022-05-18 01:10:11 UTC

Size

84.7 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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:73b28a5955ec7fb46f2cf0434e4901a889f7dda3f8c9ec496300feb256c7eda8 - 3.17% (2.69 MB)

[#001] sha256:440ad7c551279d9f14743cb1f9d3d9c5e5c62431537e922e055ad3d5a9e98ddd - 0.0% (1.23 KB)

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

[#003] sha256:b48c5ee2c84a12cd75731ca2cecf3910626a26afdcacd2e3aaa4169ee6d8a993 - 96.81% (82 MB)

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

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

[#006] sha256:40a8031934717cbfadde790bcd38751edbf070dfcc807ba8f2cb9ef2f75a22b8 - 0.0% (174 Bytes)

[#007] sha256:9d3220132f3d859da3d47dd2969fa84647eca2fb06d64e6d8d57f29f8319118c - 0.01% (4.59 KB)


History
2022-04-04 23:38:25 UTC

/bin/sh -c #(nop) ADD file:7d51a0f8691eb78c9062fd31984423a93d276a67b4ed5d1a706e1c2cd9fea23a in /

2022-04-04 23:38:25 UTC

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

2022-04-05 04:18:33 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

2022-04-05 04:18:34 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2022-04-05 04:18:35 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-05 04:18:36 UTC

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

2022-05-18 01:06:31 UTC

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

2022-05-18 01:06:31 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-05-18 01:10: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-dev perl-ipc-run perl-utils 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 zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-05-18 01:10: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

2022-05-18 01:10:03 UTC

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

2022-05-18 01:10:04 UTC

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

2022-05-18 01:10:05 UTC

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

2022-05-18 01:10:06 UTC

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

2022-05-18 01:10:08 UTC

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

2022-05-18 01:10:08 UTC

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

2022-05-18 01:10:09 UTC

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

2022-05-18 01:10:10 UTC

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

2022-05-18 01:10:11 UTC

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

Details
Content Digest

sha256:96fce96a7b4aa2464cc3f1d11e6769ea6b7e2e3918f915081b5d9d3151e29de6

Created

2022-05-18 00:39:19 UTC

Size

80.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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:df9b9388f04ad6279a7410b85cedfdcb2208c0a003da7ab5613af71079148139 - 3.35% (2.68 MB)

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

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

[#003] sha256:2528a0c6cac5e4b3d076774465f0dbbc3c346c0c1015279edbb026b25a785afd - 96.63% (77.4 MB)

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

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

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

[#007] sha256:893343c53e4a6a2bc5c834279d6a8520e369e0251e7c8eafd6c909848e992446 - 0.01% (4.59 KB)


History
2022-04-05 00:19:59 UTC

/bin/sh -c #(nop) ADD file:5d673d25da3a14ce1f6cf66e4c7fd4f4b85a3759a9d93efb3fd9ff852b5b56e4 in /

2022-04-05 00:19:59 UTC

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

2022-04-05 07:24:39 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

2022-04-05 07:24:39 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2022-04-05 07:24:40 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-05 07:24:40 UTC

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

2022-05-18 00:36:02 UTC

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

2022-05-18 00:36:02 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-05-18 00:39: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 llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils 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 zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-05-18 00:39:17 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

2022-05-18 00:39:17 UTC

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

2022-05-18 00:39:18 UTC

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

2022-05-18 00:39:18 UTC

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

2022-05-18 00:39:18 UTC

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

2022-05-18 00:39:18 UTC

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

2022-05-18 00:39:18 UTC

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

2022-05-18 00:39:19 UTC

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

2022-05-18 00:39:19 UTC

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

2022-05-18 00:39:19 UTC

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

Details
Content Digest

sha256:2e28b258560b91ba5e4539e1d361d52f2dfe913fffbcdd7bf0985f2cf801b614

Created

2022-05-18 02:07:37 UTC

Size

77.7 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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:c319b1fc4ed70b8241a7ce6ac0c4015d354bf5cf8c01eb73c50b6709c0c46e49 - 3.22% (2.5 MB)

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

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

[#003] sha256:ffe51a86ed8b4560a500af7b54b4c6c8b0c8d45a936f76f5e0e942ee8aeb01cb - 96.76% (75.2 MB)

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

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

[#006] sha256:5eb77ba81e82860aab1fadaef846feb50e755d4cde5a206bd5fb0ef40c795ef9 - 0.0% (195 Bytes)

[#007] sha256:33f308c19d98273b0b7eb21b271aae646c88c2a4fd7a5f0fbcef17230fd1d342 - 0.01% (4.59 KB)


History
2022-04-04 23:49:42 UTC

/bin/sh -c #(nop) ADD file:159dcddaab900372df882a4e94615ed84250e9cea3e74bc0479d98280342f596 in /

2022-04-04 23:49:42 UTC

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

2022-04-05 06:44:13 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

2022-04-05 06:44:13 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2022-04-05 06:44:15 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-05 06:44:15 UTC

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

2022-05-18 02:02:17 UTC

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

2022-05-18 02:02:18 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-05-18 02:07:28 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils 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 zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-05-18 02:07:31 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

2022-05-18 02:07:32 UTC

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

2022-05-18 02:07:33 UTC

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

2022-05-18 02:07:34 UTC

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

2022-05-18 02:07:35 UTC

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

2022-05-18 02:07:35 UTC

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

2022-05-18 02:07:35 UTC

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

2022-05-18 02:07:36 UTC

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

2022-05-18 02:07:36 UTC

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

2022-05-18 02:07:37 UTC

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

Details
Content Digest

sha256:beab060a191f528de4351eddef702bc6e49828db8f8a5e268544d019ff0fd8e5

Created

2022-05-18 02:24:23 UTC

Size

73.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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:57fb4b5f1a47c953ca5703f0f81ce14e5d01cf23aa79558b5adb961cc526e320 - 3.16% (2.31 MB)

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

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

[#003] sha256:53033fcbe4148d9e3e432fd938a07d71a022d5fb032debdf922f2628b506910a - 96.82% (70.8 MB)

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

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

[#006] sha256:406a7df7987f1cf7e7763469f3c74bb85f3771b3218eae6f71659d364dca63a2 - 0.0% (195 Bytes)

[#007] sha256:15ce4a34f62f90d7c1f1cd2e25bdca1712a7a5e01b9668fd34a2f7cc346df9b8 - 0.01% (4.59 KB)


History
2022-04-04 23:57:34 UTC

/bin/sh -c #(nop) ADD file:20f8cdddc53a4a8bd78945fc32fe08e9f80ab3b16dc20a9aa4ba73b79f2bc71c in /

2022-04-04 23:57:35 UTC

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

2022-04-05 10:40:04 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

2022-04-05 10:40:05 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2022-04-05 10:40:06 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-05 10:40:06 UTC

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

2022-05-18 02:18:49 UTC

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

2022-05-18 02:18:50 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-05-18 02:24:15 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-dev perl-ipc-run perl-utils 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 zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-05-18 02:24:17 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

2022-05-18 02:24:18 UTC

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

2022-05-18 02:24:19 UTC

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

2022-05-18 02:24:20 UTC

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

2022-05-18 02:24:21 UTC

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

2022-05-18 02:24:21 UTC

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

2022-05-18 02:24:21 UTC

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

2022-05-18 02:24:22 UTC

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

2022-05-18 02:24:22 UTC

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

2022-05-18 02:24:23 UTC

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

Details
Content Digest

sha256:5074a23f5ac871da65f439f8f0f1e9867a3b2582738fb095558f212ec9d25272

Created

2022-05-18 01:24:06 UTC

Size

78.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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:9981e73032c8833e387a8f96986e560edbed12c38119e0edb0439c9c2234eac9 - 3.29% (2.59 MB)

[#001] sha256:9998735be53b82d4d93cc72813622118271d565b9576e178c1cf196b949b56de - 0.0% (1.23 KB)

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

[#003] sha256:e060f9938f20d9bd2042909422184bd7fb08a5982a1e805a2312884a86994e4c - 96.69% (76.2 MB)

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

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

[#006] sha256:6b4c5f6175a0fed6a88e4aeb0ff9b0dda00548b39652e35cabb0b21dccc5c71b - 0.0% (173 Bytes)

[#007] sha256:05387b57da27160fbbd611a9aee9505e015c0e6e24c0813f97e5ade4f9d7cf25 - 0.01% (4.59 KB)


History
2022-04-04 23:39:31 UTC

/bin/sh -c #(nop) ADD file:90e56af13188c7f0283d244a0d70b853d8bef8587a41f1da8eac3a2aba8964ef in /

2022-04-04 23:39:31 UTC

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

2022-04-05 04:22:00 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

2022-04-05 04:22:01 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2022-04-05 04:22:02 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-05 04:22:03 UTC

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

2022-05-18 01:20:40 UTC

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

2022-05-18 01:20:41 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-05-18 01:23: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-dev perl-ipc-run perl-utils 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 zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-05-18 01:23: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

2022-05-18 01:23:58 UTC

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

2022-05-18 01:23:59 UTC

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

2022-05-18 01:24:00 UTC

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

2022-05-18 01:24:01 UTC

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

2022-05-18 01:24:03 UTC

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

2022-05-18 01:24:03 UTC

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

2022-05-18 01:24:04 UTC

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

2022-05-18 01:24:05 UTC

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

2022-05-18 01:24:06 UTC

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

Details
Content Digest

sha256:33df38e41f23cc54837b7320a9bd7d81bb6bb9585de7a2bd6200555f987efed1

Created

2022-05-18 01:41:12 UTC

Size

85.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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:1877acf2d48ed8bcb5bd9756a95aca0c077457be7cf4fcef25807f4e9be88db1 - 3.15% (2.68 MB)

[#001] sha256:31d11c39eb8c6d4d061062b829221f428b3acf12369b01b6c042d6a713031c39 - 0.0% (1.26 KB)

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

[#003] sha256:4b1bfec721b07231ba6bc318bf9ad46adddb53697499e8511c1b8549f5e57652 - 96.83% (82.5 MB)

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

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

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

[#007] sha256:bd371f5a0286c67a25510b3779735cf6881a4d74efa6c8b6b056fa343e616ac8 - 0.01% (4.59 KB)


History
2022-04-05 00:23:30 UTC

/bin/sh -c #(nop) ADD file:960cf6f9d3d1cfcb36c2d67dd4c3eaba7db1d0c7afe97968512248d7f234ad47 in /

2022-04-05 00:23:32 UTC

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

2022-04-05 10:15:26 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql -s /bin/sh postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2022-04-05 10:15:31 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2022-04-05 10:15:41 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-05 10:15:44 UTC

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

2022-05-18 01:34:22 UTC

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

2022-05-18 01:34:25 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-05-18 01:39: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-dev perl-ipc-run perl-utils 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 zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-05-18 01:40:03 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

2022-05-18 01:40:17 UTC

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

2022-05-18 01:40:22 UTC

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

2022-05-18 01:40:33 UTC

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

2022-05-18 01:40:39 UTC

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

2022-05-18 01:40:43 UTC

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

2022-05-18 01:40:48 UTC

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

2022-05-18 01:40:57 UTC

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

2022-05-18 01:41:06 UTC

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

2022-05-18 01:41:12 UTC

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

Details
Content Digest

sha256:57225b2596f7400d7658accff455397ec2b442666cc26612b55abc411520b879

Created

2022-05-18 01:21:18 UTC

Size

81.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

279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

PG_VERSION

14.3


Layers

[#000] sha256:a27b630f446c3da376a30cf610e4bfa6847f8b87c83702c29e72b986f4e52d28 - 3.06% (2.48 MB)

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

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

[#003] sha256:fce32cdf7438d1b1a6bb76f1f52f38849ea0dd418acb8bee972a3f6c0fa97935 - 96.92% (78.6 MB)

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

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

[#006] sha256:11ab43ec0dd0657fd35fd9fa72bd73c5d3cc735d91cce106ee2b2aa2007e9de3 - 0.0% (195 Bytes)

[#007] sha256:68808242f24cda1c562026827b4711887f20ab9c365e3ddb665dca481e5720b3 - 0.01% (4.59 KB)


History
2022-04-04 23:41:39 UTC

/bin/sh -c #(nop) ADD file:f22e4b2be87d3c59c8c609acf79015938dc1fba0b26d7c1b59bd0fc36d63a906 in /

2022-04-04 23:41:39 UTC

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

2022-04-05 06:55: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

2022-04-05 06:55:28 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2022-04-05 06:55:29 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2022-04-05 06:55:29 UTC

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

2022-05-18 01:17:14 UTC

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

2022-05-18 01:17:14 UTC

/bin/sh -c #(nop) ENV PG_SHA256=279057368bf59a919c05ada8f95c5e04abb43e74b9a2a69c3d46a20e07a9af38

2022-05-18 01:21:10 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-dev perl-ipc-run perl-utils 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 zstd ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-05-18 01:21: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

2022-05-18 01:21:16 UTC

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

2022-05-18 01:21:16 UTC

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

2022-05-18 01:21:17 UTC

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

2022-05-18 01:21:17 UTC

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

2022-05-18 01:21:17 UTC

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

2022-05-18 01:21:17 UTC

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

2022-05-18 01:21:17 UTC

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

2022-05-18 01:21:17 UTC

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

2022-05-18 01:21:18 UTC

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