Namespace
library
Image / Tag
postgres:16beta1-alpine3.17
Content Digest
sha256:a3879c3febf3ff89e9166a87c263f1fc2db694cf7cefee0625289d1f01096209
Details
Created

2023-06-14 23:17:06 UTC

Size

95.2 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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:187bd96dd637d3adfc7a9b61a1e7465181bbfe90dbf7a2830dfba97e4e3243a4 - 3.42% (3.25 MB)

[#001] sha256:541dbe1bafbd3cd1458e46676917913e49bd4aa2dbc3d3f8053bdde58032dd73 - 0.0% (1.26 KB)

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

[#003] sha256:29e70c52aad032538de02b801939b37a89806937f579201c58165ba0b6f1867a - 96.57% (92 MB)

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

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

[#006] sha256:941d5dfab23769f69bdcb4be3845d0ae6ade9fa345cec699d99b86bcb79e346f - 0.0% (195 Bytes)

[#007] sha256:e4e8ee842ad626fd70b5fec3be770e4d24935223876084a4840ee51073f01681 - 0.0% (4.67 KB)


History
2023-06-14 22:33:26 UTC

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

2023-06-14 22:33:26 UTC

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

2023-06-14 23:11:47 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-06-14 23:11:47 UTC

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

2023-06-14 23:11:48 UTC

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

2023-06-14 23:11:48 UTC

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

2023-06-14 23:11:48 UTC

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

2023-06-14 23:11:48 UTC

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

2023-06-14 23:11:48 UTC

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

2023-06-14 23:17:03 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-06-14 23:17: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

2023-06-14 23:17:05 UTC

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

2023-06-14 23:17:05 UTC

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

2023-06-14 23:17:05 UTC

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

2023-06-14 23:17:06 UTC

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

2023-06-14 23:17:06 UTC

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

2023-06-14 23:17:06 UTC

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

2023-06-14 23:17:06 UTC

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

2023-06-14 23:17:06 UTC

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

2023-06-14 23:17:06 UTC

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

Details
Created

2023-06-14 21:16:05 UTC

Size

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:4db1b89c0bd13344176ddce2d093b9da2ae58336823ffed2009a7ea4b62d2a95 - 3.55% (3.22 MB)

[#001] sha256:94726e0716821ec3d5f3d5b0b39ad2bce969dc1a6c20628067ab5337b37fffac - 0.0% (1.26 KB)

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

[#003] sha256:d77ab4eec59919c30afc984fb2d82be53e1ce9ae56d7065f9569b5c06f25b0c3 - 96.43% (87.4 MB)

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

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

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

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


History
2023-06-14 20:42:04 UTC

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

2023-06-14 20:42:04 UTC

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

2023-06-14 21:13: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

2023-06-14 21:13:15 UTC

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

2023-06-14 21:13:16 UTC

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

2023-06-14 21:13:16 UTC

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

2023-06-14 21:13:16 UTC

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

2023-06-14 21:13:16 UTC

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

2023-06-14 21:13:16 UTC

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

2023-06-14 21:16:03 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-06-14 21:16: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

2023-06-14 21:16:04 UTC

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

2023-06-14 21:16:04 UTC

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

2023-06-14 21:16:05 UTC

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

2023-06-14 21:16:05 UTC

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

2023-06-14 21:16:05 UTC

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

2023-06-14 21:16:05 UTC

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

2023-06-14 21:16:05 UTC

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

2023-06-14 21:16:05 UTC

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

2023-06-14 21:16:05 UTC

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

Details
Created

2023-06-14 19:02:41 UTC

Size

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:33ec62e98ceea71d24212ee03e239c2d5538dbe7c98f41c42e8b2693fedf58fb - 3.35% (2.97 MB)

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

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

[#003] sha256:0ceada2a7ace3915cca10f4d3f087aad8712099f85f03d043be10b9a960bad4f - 96.63% (85.5 MB)

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

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

[#006] sha256:9bf7a29326a43008053e8ae777d9ea42f0aa44e964e60dcfc6636293ca13b64b - 0.0% (197 Bytes)

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


History
2023-06-14 18:49:25 UTC

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

2023-06-14 18:49:25 UTC

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

2023-06-14 18:59: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

2023-06-14 18:59:33 UTC

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

2023-06-14 18:59:34 UTC

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

2023-06-14 18:59:35 UTC

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

2023-06-14 18:59:35 UTC

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

2023-06-14 18:59:35 UTC

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

2023-06-14 18:59:35 UTC

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

2023-06-14 19:02:38 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-06-14 19:02:39 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-06-14 19:02:40 UTC

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

2023-06-14 19:02:40 UTC

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

2023-06-14 19:02:41 UTC

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

2023-06-14 19:02:41 UTC

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

2023-06-14 19:02:41 UTC

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

2023-06-14 19:02:41 UTC

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

2023-06-14 19:02:41 UTC

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

2023-06-14 19:02:41 UTC

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

2023-06-14 19:02:41 UTC

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

Details
Created

2023-06-14 23:32:14 UTC

Size

83.4 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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:f929d112168394cf1fbe294a86fbe5173dd92df4daac8cb09437b17dfc5df802 - 3.28% (2.74 MB)

[#001] sha256:37af63edad6af9ed8a0afb123bf0ae7c5676c614ce9e0a0cf45504288b6e9c58 - 0.0% (1.26 KB)

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

[#003] sha256:84d04a693621116d6bb363fd1a7d4377b261ee6951642ab29f2890b9f31a5d2d - 96.7% (80.6 MB)

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

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

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

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


History
2023-06-14 22:36:20 UTC

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

2023-06-14 22:36:20 UTC

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

2023-06-14 23:27: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

2023-06-14 23:27:39 UTC

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

2023-06-14 23:27:40 UTC

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

2023-06-14 23:27:41 UTC

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

2023-06-14 23:27:41 UTC

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

2023-06-14 23:27:41 UTC

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

2023-06-14 23:27:42 UTC

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

2023-06-14 23:32: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 $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-06-14 23: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

2023-06-14 23:32:12 UTC

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

2023-06-14 23:32:12 UTC

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

2023-06-14 23:32:13 UTC

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

2023-06-14 23:32:13 UTC

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

2023-06-14 23:32:13 UTC

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

2023-06-14 23:32:13 UTC

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

2023-06-14 23:32:14 UTC

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

2023-06-14 23:32:14 UTC

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

2023-06-14 23:32:14 UTC

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

Details
Created

2023-06-14 21:06:54 UTC

Size

88.4 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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:edb6bdbacee93be93e930669f43e2e922c8594676aa342a70e2221361fd1914d - 3.52% (3.11 MB)

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

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

[#003] sha256:bcdae759eeddb8367e7ca8f9185ba6e7483cc6b55eac95a1d908fcc2a89b2b85 - 96.46% (85.3 MB)

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

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

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

[#007] sha256:638fa9761842d417e5ca32b76b7af20bcb1877d8045d1cacea90facec4eaee85 - 0.01% (4.67 KB)


History
2023-06-14 20:49:04 UTC

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

2023-06-14 20:49:04 UTC

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

2023-06-14 21:04: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

2023-06-14 21:04:39 UTC

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

2023-06-14 21:04:39 UTC

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

2023-06-14 21:04:39 UTC

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

2023-06-14 21:04:39 UTC

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

2023-06-14 21:04:39 UTC

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

2023-06-14 21:04:40 UTC

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

2023-06-14 21:06:51 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-06-14 21:06: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-06-14 21:06:53 UTC

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

2023-06-14 21:06:53 UTC

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

2023-06-14 21:06:54 UTC

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

2023-06-14 21:06:54 UTC

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

2023-06-14 21:06:54 UTC

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

2023-06-14 21:06:54 UTC

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

2023-06-14 21:06:54 UTC

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

2023-06-14 21:06:54 UTC

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

2023-06-14 21:06:54 UTC

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

Details
Created

2023-06-15 04:32:23 UTC

Size

96.2 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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:8436307590cda5ccded8a952bb1d66684f8700d07029527293dd695eac6fabc9 - 3.36% (3.23 MB)

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

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

[#003] sha256:92ecf24d8dec12e23e5518ed16e23637e0b51985d4b8ee70faee63a4f7d14dc0 - 96.62% (92.9 MB)

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

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

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

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


History
2023-06-15 00:39:56 UTC

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

2023-06-15 00:39:57 UTC

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

2023-06-15 04:28:32 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-06-15 04:28:32 UTC

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

2023-06-15 04:28:33 UTC

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

2023-06-15 04:28:34 UTC

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

2023-06-15 04:28:34 UTC

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

2023-06-15 04:28:34 UTC

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

2023-06-15 04:28:34 UTC

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

2023-06-15 04:32: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 $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-06-15 04:32:19 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-06-15 04:32:20 UTC

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

2023-06-15 04:32:20 UTC

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

2023-06-15 04:32:21 UTC

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

2023-06-15 04:32:22 UTC

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

2023-06-15 04:32:22 UTC

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

2023-06-15 04:32:22 UTC

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

2023-06-15 04:32:22 UTC

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

2023-06-15 04:32:22 UTC

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

2023-06-15 04:32:23 UTC

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

Details
Created

2023-06-15 12:47:06 UTC

Size

91.1 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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:eb857838eb854a669f87c5df4d936d905fb3129287a93ef485da9454c11d83cd - 3.32% (3.03 MB)

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

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

[#003] sha256:a0b15e0e7eeb64f1e4c1f5ed7fe23a4a7d2ffc7579d7e3df07b09e68f373ed97 - 96.66% (88.1 MB)

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

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

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

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


History
2023-06-15 05:19:50 UTC

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

2023-06-15 05:19:51 UTC

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

2023-06-15 12:43:42 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-06-15 12:43:43 UTC

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

2023-06-15 12:43:43 UTC

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

2023-06-15 12:43:43 UTC

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

2023-06-15 12:43:43 UTC

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

2023-06-15 12:43:43 UTC

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

2023-06-15 12:43:43 UTC

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

2023-06-15 12:46:56 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $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-06-15 12:47:01 UTC

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

2023-06-15 12:47:03 UTC

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

2023-06-15 12:47:03 UTC

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

2023-06-15 12:47:05 UTC

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

2023-06-15 12:47:05 UTC

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

2023-06-15 12:47:05 UTC

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

2023-06-15 12:47:05 UTC

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

2023-06-15 12:47:05 UTC

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

2023-06-15 12:47:05 UTC

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

2023-06-15 12:47:06 UTC

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

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete