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

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:b3f50075abd13aad1cb7d8c1427aa59d7fcac88f3690d3f9c3efdbec80fd0856 - 3.26% (3.08 MB)

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

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

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

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

[#005] sha256:bab0a4a53e074507c77e0440a2c720b0907e9eeae6ee010614fd36e22c9b57a7 - 0.0% (159 Bytes)

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

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


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

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

2023-06-14 22:33:22 UTC

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

2023-06-14 23:06:09 UTC

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

2023-06-14 23:06:09 UTC

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

2023-06-14 23:06:10 UTC

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

2023-06-14 23:06:10 UTC

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

2023-06-14 23:06:10 UTC

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

2023-06-14 23:06:10 UTC

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

2023-06-14 23:06:10 UTC

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

2023-06-14 23:11:31 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:11:33 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:11:33 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:11:34 UTC

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

2023-06-14 23:11:34 UTC

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

2023-06-14 23:11:34 UTC

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

2023-06-14 23:11:34 UTC

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

2023-06-14 23:11:34 UTC

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

2023-06-14 23:11:35 UTC

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

2023-06-14 23:11:35 UTC

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

2023-06-14 23:11:35 UTC

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

Details
Created

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 - 3.61% (3.24 MB)

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

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

[#003] sha256:c32f20c22c763a7e7eaa70aea5009c95dec78a6b29ac08577fa94251b7f00e4a - 96.38% (86.6 MB)

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

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

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

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


History
2023-06-14 20:41:58 UTC

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

2023-06-14 20:41:59 UTC

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

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

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

2023-06-14 21:10:07 UTC

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

2023-06-14 21:10:07 UTC

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

2023-06-14 21:10:07 UTC

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

2023-06-14 21:10:07 UTC

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

2023-06-14 21:10:07 UTC

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

2023-06-14 21:12:55 UTC

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

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

2023-06-14 21:12:57 UTC

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

2023-06-14 21:12:57 UTC

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

2023-06-14 21:12:57 UTC

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

2023-06-14 21:12:57 UTC

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

2023-06-14 21:12:57 UTC

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

2023-06-14 21:12:58 UTC

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

2023-06-14 21:12:58 UTC

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

Details
Created

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

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

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

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

[#003] sha256:c829cd0f139dc6159eb3e52e74da2de9efeb87ab838d806cac655137cc68067f - 96.6% (85.5 MB)

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

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

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

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


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

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

2023-06-14 18:49:20 UTC

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

2023-06-14 18:56:23 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:56:23 UTC

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

2023-06-14 18:56:24 UTC

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

2023-06-14 18:56:24 UTC

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

2023-06-14 18:56:24 UTC

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

2023-06-14 18:56:24 UTC

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

2023-06-14 18:56:24 UTC

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

2023-06-14 18:59:20 UTC

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

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

2023-06-14 18:59:22 UTC

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

2023-06-14 18:59:23 UTC

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

2023-06-14 18:59:23 UTC

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

2023-06-14 18:59:23 UTC

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

2023-06-14 18:59:23 UTC

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

2023-06-14 18:59:23 UTC

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

2023-06-14 18:59:23 UTC

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

2023-06-14 18:59:24 UTC

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

Details
Created

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:633ba29fd335042456b6e2c073636f6fa30de56f1331c442914739b92a479974 - 3.31% (2.76 MB)

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

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

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

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

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

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

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


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

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

2023-06-14 22:36:15 UTC

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

2023-06-14 23:22:31 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:22:31 UTC

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

2023-06-14 23:22:32 UTC

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

2023-06-14 23:22:32 UTC

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

2023-06-14 23:22:32 UTC

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

2023-06-14 23:22:33 UTC

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

2023-06-14 23:22:33 UTC

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

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

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

2023-06-14 23:27:22 UTC

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

2023-06-14 23:27:22 UTC

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

2023-06-14 23:27:23 UTC

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

2023-06-14 23:27:23 UTC

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

2023-06-14 23:27:23 UTC

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

2023-06-14 23:27:23 UTC

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

2023-06-14 23:27:24 UTC

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

Details
Created

2023-06-14 21:04:33 UTC

Size

88.8 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:8c6d1654570f041603f4cef49c320c8f6f3e401324913009d92a19132cbf1ac0 - 3.57% (3.18 MB)

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

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

[#003] sha256:1b11ffa1184a2b8a7fb31042ff64b070b600b9590fed4a55a034ae0effff01cc - 96.41% (85.7 MB)

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

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

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

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


History
2023-06-14 20:48:58 UTC

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

2023-06-14 20:48:58 UTC

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

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

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

2023-06-14 21:02:16 UTC

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

2023-06-14 21:02:16 UTC

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

2023-06-14 21:02:17 UTC

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

2023-06-14 21:02:17 UTC

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

2023-06-14 21:02:17 UTC

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

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

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

2023-06-14 21:04:33 UTC

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

2023-06-14 21:04:33 UTC

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

2023-06-14 21:04:33 UTC

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

2023-06-14 21:04:33 UTC

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

2023-06-14 21:04:33 UTC

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

2023-06-14 21:04:33 UTC

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

2023-06-14 21:04:33 UTC

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

Details
Created

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

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

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

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

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

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

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

[#006] sha256:610c163dc5c3897a686ecbab59eef9c12f1afe4854c44e30fde4453569e4c0ba - 0.0% (198 Bytes)

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


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

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

2023-06-15 00:39:49 UTC

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

2023-06-15 04:24:22 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:24:22 UTC

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

2023-06-15 04:24:23 UTC

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

2023-06-15 04:24:23 UTC

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

2023-06-15 04:24:24 UTC

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

2023-06-15 04:24:24 UTC

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

2023-06-15 04:24:24 UTC

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

2023-06-15 04:28:17 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:28:22 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:28:23 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:28:23 UTC

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

2023-06-15 04:28:24 UTC

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

2023-06-15 04:28:25 UTC

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

2023-06-15 04:28:25 UTC

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

2023-06-15 04:28:25 UTC

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

2023-06-15 04:28:26 UTC

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

2023-06-15 04:28:26 UTC

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

2023-06-15 04:28:26 UTC

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

Details
Created

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

59e248d434aa515fa2d31c0d161c4148f30d511dcde91f6e888684823b6849a8

PG_VERSION

16beta1


Layers

[#000] sha256:998cc98447b44e5f0fe799dce691412796ba586ab22eb7c99aebf9d45f34833b - 3.35% (3.06 MB)

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

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

[#003] sha256:5c394a5f63d4257e66cd72e6eef7007b0a238d3d4fabad882bdbb9f68e9cdf12 - 96.63% (88.4 MB)

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

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

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

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


History
2023-06-15 05:18:38 UTC

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

2023-06-15 05:18:38 UTC

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

2023-06-15 12:38:49 UTC

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

2023-06-15 12:38:50 UTC

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

2023-06-15 12:38:51 UTC

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

2023-06-15 12:38:51 UTC

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

2023-06-15 12:38:51 UTC

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

2023-06-15 12:38:51 UTC

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

2023-06-15 12:38:51 UTC

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

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

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

2023-06-15 12:42:23 UTC

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

2023-06-15 12:42:23 UTC

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

2023-06-15 12:42:24 UTC

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

2023-06-15 12:42:24 UTC

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

2023-06-15 12:42:24 UTC

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

2023-06-15 12:42:24 UTC

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

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