Namespace
library
Image / Tag
postgres:16beta2-alpine
Content Digest
sha256:cc5afea8e706b3e5bc4a025226b152ac3a08d07d6e7bd81492c3ae2bc28ec7dd
Details
Created

2023-08-08 20:44:19 UTC

Size

94.6 MB

Content Digest
Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

16

PG_SHA256

ba653197465180c93775b4949a89dc6fbfebae2a44587ae7168fdfd24f519b50

PG_VERSION

16beta2


Layers

[#000] sha256:95dc695758361a4038a2d9026959d72e1f531114edb0341be7ce47d912ef069e - 3.26% (3.09 MB)

[#001] sha256:5ffc9b02160bb312a7ec87e959a3a9f5cc15bd3ee2c9686dc4b0723e53b4df62 - 0.0% (1.26 KB)

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

[#003] sha256:e52bce706be701f353740720c3756869f06e976aa3d5869e57fba76fd6c48fb5 - 96.72% (91.5 MB)

[#004] sha256:aa4011454210b2a64410075aebe58fa36ce4724456770899ee1dfd6a8dbafb55 - 0.01% (9.34 KB)

[#005] sha256:8ac01dee775e2d23617353a9ba48c26a3938f66f8ccab7fe1bbee76f0280696a - 0.0% (160 Bytes)

[#006] sha256:a691e4b3ea5d07fe20219001c1c6be2d872d4c525ad3e6d336cb60729ad515ef - 0.0% (199 Bytes)

[#007] sha256:594ce83b42f356a9d0839199e37e56927abda2968f3ff3b27122e836cd855496 - 0.0% (4.68 KB)


History
2023-08-07 19:38:26 UTC

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

2023-08-07 19:38:27 UTC

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

2023-08-08 20:38:44 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

2023-08-08 20:38:44 UTC

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

2023-08-08 20:38:45 UTC

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

2023-08-08 20:38:45 UTC

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

2023-08-08 20:38:45 UTC

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

2023-08-08 20:38:45 UTC

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

2023-08-08 20:38:45 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-08-08 20:44: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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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 zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 20:44: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

2023-08-08 20:44:18 UTC

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

2023-08-08 20:44:18 UTC

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

2023-08-08 20:44:19 UTC

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

2023-08-08 20:44:19 UTC

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

2023-08-08 20:44:19 UTC

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

2023-08-08 20:44:19 UTC

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

2023-08-08 20:44:19 UTC

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

2023-08-08 20:44:19 UTC

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

2023-08-08 20:44:19 UTC

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

Details
Created

2023-08-09 02:29:46 UTC

Size

89.9 MB

Content Digest
Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

16

PG_SHA256

ba653197465180c93775b4949a89dc6fbfebae2a44587ae7168fdfd24f519b50

PG_VERSION

16beta2


Layers

[#000] sha256:7264a8db6415046d36d16ba98b79778e18accee6ffa71850405994cffa9be7de - 3.61% (3.24 MB)

[#001] sha256:6ff36a0c8b9b9d276476d169ec8b67363b3ce61e2bb9dd531afa7a5e7bc2384c - 0.0% (1.26 KB)

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

[#003] sha256:d5b269847d4362615d6d53667996204164b37f614ff461164e31de84a58cfab2 - 96.37% (86.6 MB)

[#004] sha256:3e69b2f259d78c8c854daf2c46b2dc4e3287fb44cb51df3040556e97b5a756c0 - 0.01% (9.34 KB)

[#005] sha256:2f3cc0737b2e9cda5c07ef1f38d9e415f251197516625d4096a2417c4c3cbb67 - 0.0% (160 Bytes)

[#006] sha256:e0f1448d94bad736a2cdb96c3d5275ff717b151f4f403760d5301e4daca1c647 - 0.0% (202 Bytes)

[#007] sha256:cf75882ab708eb6c669bc561eb40103ec16530933a5d35ddb826bc0fcb479cfd - 0.01% (4.68 KB)


History
2023-08-07 19:20:20 UTC

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

2023-08-07 19:20:20 UTC

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

2023-08-09 02:26:58 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

2023-08-09 02:26:58 UTC

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

2023-08-09 02:26:58 UTC

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

2023-08-09 02:26:59 UTC

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

2023-08-09 02:26:59 UTC

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

2023-08-09 02:26:59 UTC

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

2023-08-09 02:26:59 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-08-09 02:29:43 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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 zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-09 02:29:44 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-08-09 02:29:45 UTC

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

2023-08-09 02:29:45 UTC

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

2023-08-09 02:29:45 UTC

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

2023-08-09 02:29:46 UTC

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

2023-08-09 02:29:46 UTC

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

2023-08-09 02:29:46 UTC

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

2023-08-09 02:29:46 UTC

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

2023-08-09 02:29:46 UTC

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

2023-08-09 02:29:46 UTC

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

Details
Created

2023-08-08 22:26:18 UTC

Size

88.6 MB

Content Digest
Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

16

PG_SHA256

ba653197465180c93775b4949a89dc6fbfebae2a44587ae7168fdfd24f519b50

PG_VERSION

16beta2


Layers

[#000] sha256:af09961d4a43b504efc76e38b50918977c28be73eeb8b926247783a00e8b9f2f - 3.39% (3 MB)

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

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

[#003] sha256:089f59e2f1f6a7ec33c434b7f24f05202e1f17b026a750277d8e80ffd0571c94 - 96.6% (85.6 MB)

[#004] sha256:5312b16fa6210ac7416b630e713c023a2de2626dba967deb5eb7c37d244ed3e5 - 0.01% (9.34 KB)

[#005] sha256:f26e8081556d25fecc467efcf74c16279c1beb5840c669e45f1edf88b578a459 - 0.0% (160 Bytes)

[#006] sha256:23b59bea28bcc80eceffbaf5e1deb921f9d801c5d026b8b3c7371bfba17fee25 - 0.0% (200 Bytes)

[#007] sha256:64207b30c049cdad75efdb002af0fabb226c2aa941c0c9be0ca5c359e5de22b2 - 0.01% (4.68 KB)


History
2023-08-07 19:49:14 UTC

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

2023-08-07 19:49:15 UTC

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

2023-08-08 22:22:43 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

2023-08-08 22:22:43 UTC

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

2023-08-08 22:22:44 UTC

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

2023-08-08 22:22:44 UTC

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

2023-08-08 22:22:44 UTC

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

2023-08-08 22:22:44 UTC

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

2023-08-08 22:22:44 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-08-08 22:26: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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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 zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 22:26:16 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

2023-08-08 22:26:16 UTC

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

2023-08-08 22:26:17 UTC

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

2023-08-08 22:26:17 UTC

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

2023-08-08 22:26:17 UTC

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

2023-08-08 22:26:17 UTC

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

2023-08-08 22:26:17 UTC

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

2023-08-08 22:26:17 UTC

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

2023-08-08 22:26:18 UTC

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

2023-08-08 22:26:18 UTC

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

Details
Created

2023-08-08 02:34:25 UTC

Size

83.5 MB

Content Digest
Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

16

PG_SHA256

ba653197465180c93775b4949a89dc6fbfebae2a44587ae7168fdfd24f519b50

PG_VERSION

16beta2


Layers

[#000] sha256:f8dec92eec42224ef9e6ca9c6207ea6b9195dcf93d06bd5ceff0f814b62bf064 - 3.31% (2.77 MB)

[#001] sha256:5bf5c2c99c4018a6602af0b3f90590873658820fedbb99ccefdcc9843a41607a - 0.0% (1.26 KB)

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

[#003] sha256:2f43cc8c2d9018f3c148b8ff6eab9ad040a4c0478eec99d77ebaab844b4e3f10 - 96.67% (80.7 MB)

[#004] sha256:0d87b19255a2a986aa22140b2a5c7cade859c370abff867cdd9661a4794e96dd - 0.01% (9.35 KB)

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

[#006] sha256:f60dc0f4dcaabbe18d84a29feb5668279b1df73560ebdaf0689c8739bddcdaff - 0.0% (201 Bytes)

[#007] sha256:db1f1f14f2476a6e01b69cf1a4023f66800026706c9178aca3e381ca94d6a59d - 0.01% (4.68 KB)


History
2023-08-07 19:57:25 UTC

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

2023-08-07 19:57:25 UTC

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

2023-08-08 02:31:57 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

2023-08-08 02:31:57 UTC

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

2023-08-08 02:31:58 UTC

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

2023-08-08 02:31:58 UTC

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

2023-08-08 02:31:58 UTC

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

2023-08-08 02:31:58 UTC

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

2023-08-08 02:31:58 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-08-08 02:34: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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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 zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 02:34: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

2023-08-08 02:34:23 UTC

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

2023-08-08 02:34:24 UTC

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

2023-08-08 02:34:24 UTC

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

2023-08-08 02:34:24 UTC

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

2023-08-08 02:34:24 UTC

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

2023-08-08 02:34:24 UTC

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

2023-08-08 02:34:24 UTC

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

2023-08-08 02:34:25 UTC

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

2023-08-08 02:34:25 UTC

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

Details
Created

2023-08-09 03:10:29 UTC

Size

88.9 MB

Content Digest
Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

16

PG_SHA256

ba653197465180c93775b4949a89dc6fbfebae2a44587ae7168fdfd24f519b50

PG_VERSION

16beta2


Layers

[#000] sha256:9fda8d8052c61740409c4bea888859c141fd8cc3f58ac61943144ff6d1681b2d - 3.57% (3.18 MB)

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

[#002] sha256:a99f2e61e52526c29737f6852964ac1f22db3b43a8a1781aa9014fbcdee63e20 - 0.0% (147 Bytes)

[#003] sha256:814e6619dd1b68033538eb25ed48fa5930bcc57964f834e48e0852fc7f7b7d87 - 96.41% (85.7 MB)

[#004] sha256:360107a93071adc4591ec5d94ad3108b7a49ae623c25f4c9e73538b2689ffe6e - 0.01% (9.34 KB)

[#005] sha256:d982236fb163666b29862b6e9a545f04ec6bf8e78acf19e750aa56ad7e9208c2 - 0.0% (160 Bytes)

[#006] sha256:b75f043747a7e01d0f50bbeab2c7bf67e4824fa59d6b67a0abe3c8b23c9572e1 - 0.0% (200 Bytes)

[#007] sha256:28ae5098158d2f757fe83cd3296cc016c5f3bd1f2b101de950de0c8c76b028b2 - 0.01% (4.68 KB)


History
2023-08-07 19:39:19 UTC

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

2023-08-07 19:39:19 UTC

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

2023-08-09 03:08:16 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

2023-08-09 03:08:16 UTC

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

2023-08-09 03:08:16 UTC

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

2023-08-09 03:08:16 UTC

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

2023-08-09 03:08:17 UTC

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

2023-08-09 03:08:17 UTC

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

2023-08-09 03:08:17 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-08-09 03:10: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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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 zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-09 03:10:28 UTC

/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample

2023-08-09 03:10:28 UTC

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

2023-08-09 03:10:28 UTC

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

2023-08-09 03:10:29 UTC

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

2023-08-09 03:10:29 UTC

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

2023-08-09 03:10:29 UTC

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

2023-08-09 03:10:29 UTC

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

2023-08-09 03:10:29 UTC

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

2023-08-09 03:10:29 UTC

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

2023-08-09 03:10:29 UTC

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

Details
Created

2023-08-08 22:10:58 UTC

Size

95.3 MB

Content Digest
Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

16

PG_SHA256

ba653197465180c93775b4949a89dc6fbfebae2a44587ae7168fdfd24f519b50

PG_VERSION

16beta2


Layers

[#000] sha256:55353ca330e9474ce7b858eca6842bb540ef4a70b2981c2ed47eefb9ef4253ad - 3.35% (3.19 MB)

[#001] sha256:39d85e956d8abee510b053a42fd1ed47c684f6838ffba3cccca8a7eb65f59bcc - 0.0% (1.26 KB)

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

[#003] sha256:f251efc3c738d12751c2dfa102dac063670e050373084c173563b33b885cdf60 - 96.64% (92.1 MB)

[#004] sha256:bdb1ebb76b75b3563fa9202ea1edd9072202f76a3ccf8ea68ffd1b2f61bb59bc - 0.01% (9.35 KB)

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

[#006] sha256:676ad54346acb4c87eb42ea1b8001839d4d87d2195970fa8719b0fb4c1ce1783 - 0.0% (200 Bytes)

[#007] sha256:e5a91fc3806fe8b749d22a7a7a1777a018954b930899dd3e88f8f122e72350ca - 0.0% (4.68 KB)


History
2023-08-07 20:16:25 UTC

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

2023-08-07 20:16:26 UTC

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

2023-08-08 22:06:51 UTC

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

2023-08-08 22:06:52 UTC

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

2023-08-08 22:06:53 UTC

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

2023-08-08 22:06:54 UTC

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

2023-08-08 22:06:55 UTC

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

2023-08-08 22:06:56 UTC

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

2023-08-08 22:06:56 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-08-08 22:10: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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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 zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 22:10: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

2023-08-08 22:10:54 UTC

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

2023-08-08 22:10:54 UTC

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

2023-08-08 22:10:56 UTC

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

2023-08-08 22:10:56 UTC

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

2023-08-08 22:10:56 UTC

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

2023-08-08 22:10:57 UTC

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

2023-08-08 22:10:57 UTC

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

2023-08-08 22:10:57 UTC

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

2023-08-08 22:10:58 UTC

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

Details
Created

2023-08-09 03:08:43 UTC

Size

91.5 MB

Content Digest
Environment
DOCKER_PG_LLVM_DEPS

llvm15-dev clang15

LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

16

PG_SHA256

ba653197465180c93775b4949a89dc6fbfebae2a44587ae7168fdfd24f519b50

PG_VERSION

16beta2


Layers

[#000] sha256:8bed2eae372fe236061920d89ae1ce89695a12df84989113bcc7ce4bd9774456 - 3.35% (3.07 MB)

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

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

[#003] sha256:497c4fb0594dc5592bdc1c442e7d82d71c4a76df8ab3d42b5b505d02f84d64cd - 96.63% (88.4 MB)

[#004] sha256:82de0cf60885d47ff0ddf45246f81676903589855d7384112f0f74fae84c74c7 - 0.01% (9.34 KB)

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

[#006] sha256:6ee0124fff10eccb5ed6f9be93fbac1dcbc2eaa22d30cd40046a2624461050a0 - 0.0% (199 Bytes)

[#007] sha256:1d139e7f3e3d05e1b30e1881ec253a35cbf2946271f77c52aa4bfb5a6c7f1759 - 0.0% (4.68 KB)


History
2023-08-07 19:41:54 UTC

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

2023-08-07 19:41:55 UTC

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

2023-08-09 03:06:01 UTC

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

2023-08-09 03:06:02 UTC

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

2023-08-09 03:06:02 UTC

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

2023-08-09 03:06:02 UTC

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

2023-08-09 03:06:02 UTC

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

2023-08-09 03:06:02 UTC

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

2023-08-09 03:06:02 UTC

/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15

2023-08-09 03:08:37 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 $DOCKER_PG_LLVM_DEPS bison coreutils dpkg-dev dpkg flex g++ gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers 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 zstd-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'; export LLVM_CONFIG="/usr/lib/llvm15/bin/llvm-config"; export CLANG=clang-15; ./configure --enable-option-checking=fatal --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; 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 icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-09 03:08:41 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

2023-08-09 03:08:42 UTC

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

2023-08-09 03:08:42 UTC

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

2023-08-09 03:08:42 UTC

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

2023-08-09 03:08:43 UTC

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

2023-08-09 03:08:43 UTC

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

2023-08-09 03:08:43 UTC

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

2023-08-09 03:08:43 UTC

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

2023-08-09 03:08:43 UTC

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

2023-08-09 03:08:43 UTC

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