docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:16beta3-alpine3.17
sha256:560fcdd9f8b389fd2def1b86ca1e7bd293a4099104ee6e02b3b1ed0343478db1
2023-08-11 19:21:27 UTC
95.3 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR16
PG_SHA256ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
PG_VERSION16beta3
[#000] sha256:ddc7d64c528fabaad61cc880e91abba829973f743d753415145211971f9ee10d - 3.42% (3.26 MB)
[#001] sha256:f1f18735277fba41a769569b43d4ef767a803e905d34e355012eb3eae6625a70 - 0.0% (1.26 KB)
[#002] sha256:36be60f4dcdcee08649009c2417cfb66bfe07fde5f84a8ed7b7cd53eb9fd4b19 - 0.0% (149 Bytes)
[#003] sha256:78504bfa7424e358a30a6f0b816f8d886bb10eed80d064fee9a0684635e4996c - 96.57% (92 MB)
[#004] sha256:85c24f5ac33f80ec5d3cae14ea33c796282cb85c45e22c6248dd3ee5113ef77f - 0.01% (9.34 KB)
[#005] sha256:568858d8dd024c360ef877197721819f8d0e48fd4e54ab766f046641516ad4e6 - 0.0% (161 Bytes)
[#006] sha256:94338171b8f81e51c1ea78882f0bd2bbb112619a02adaf755752348b53ed7a07 - 0.0% (193 Bytes)
[#007] sha256:9cb720fe17e550eeff62f3c2db6be548a1d986582b264f491141e865589a0e92 - 0.0% (4.68 KB)
/bin/sh -c #(nop) ADD file:437e2411fa3e4795a759f54507f41caa000169f0c32600ec49b4397313cd0884 in /
2023-08-07 19:38:30 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 20:44: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-08-08 20:44:22 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 20:44:23 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 20:44:23 UTC/bin/sh -c #(nop) ENV PG_MAJOR=16
2023-08-11 19:16:11 UTC/bin/sh -c #(nop) ENV PG_VERSION=16beta3
2023-08-11 19:16:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
2023-08-11 19:16:11 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-11 19:21:24 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-11 19:21:26 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-11 19:21:26 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-11 19:21:26 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-11 19:21:27 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-11 19:21:27 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-11 19:21:27 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-11 19:21:27 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-11 19:21:27 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-11 19:21:27 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-11 19:21:27 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:65d320cb4e4190a99765d1b160c3ee055edb08ce4d99f85d9bf93b2e9476ac11
2023-08-11 18:45:33 UTC
90.6 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR16
PG_SHA256ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
PG_VERSION16beta3
[#000] sha256:9398808236ffac29e60c04ec906d8d409af7fa19dc57d8c65ad167e9c4967006 - 3.56% (3.22 MB)
[#001] sha256:a159e268d0e03977bee3ff9c55d4062de5a80a1bb11ec831965ecf0830331c5c - 0.0% (1.26 KB)
[#002] sha256:a3e40c521837c9ad05fd35d9e5338c7f78968ab81f39448816a524e2d2531245 - 0.0% (149 Bytes)
[#003] sha256:5080ceed9bbc833a8b475fa89e2261d816d45b98e2634a04a7425d8abaac8726 - 96.43% (87.4 MB)
[#004] sha256:d6c9431292b1fc3fe5ab10ce0ef1177d401ef655905c0555150d0045ca91957b - 0.01% (9.34 KB)
[#005] sha256:57aa94e0466efa79d7148acc0011742b3e01d0e7975f6cc28d0afd9128c8b68f - 0.0% (162 Bytes)
[#006] sha256:723688e9ec93d18e6f9fbbdc6290adea99a579064536831a7551d83485774c99 - 0.0% (193 Bytes)
[#007] sha256:c358dc2bce53411945f60df1094a0dc61db47291517ffc428d1432642d623d8b - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:6dd87346b8be240b21b4f4d9296253bf0d28b6579aa52d2118872e3936963b6b in /
2023-08-07 19:20:26 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-09 02:29:52 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:29:52 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-09 02:29:52 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-09 02:29:52 UTC/bin/sh -c #(nop) ENV PG_MAJOR=16
2023-08-11 18:42:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=16beta3
2023-08-11 18:42:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
2023-08-11 18:42:46 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-11 18:45: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-08-11 18:45:31 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-11 18:45:32 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-11 18:45:32 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-11 18:45:32 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-11 18:45:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-11 18:45:32 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-11 18:45:32 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-11 18:45:33 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-11 18:45:33 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-11 18:45:33 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:e1c2253bb65dd1f1e9bdfc5dd11e67359b4b83b777ff9a310c0ed43b38408075
2023-08-11 18:55:21 UTC
88.5 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR16
PG_SHA256ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
PG_VERSION16beta3
[#000] sha256:342323bc858ed9706f7953ab06cbf6785b678c55ef2317577af748533d11165b - 3.36% (2.97 MB)
[#001] sha256:13901678aba6cc2a9a49b22c188c8048b16a39b6c3cc01361b87bef0f49c22ff - 0.0% (1.25 KB)
[#002] sha256:bb3c5a1f69a1a69ad92ea615b3b0c683557c5110025b19ca2d9eb4d8a153e346 - 0.0% (149 Bytes)
[#003] sha256:e720bcaadf364362f2a6a708cdf1e182278d99861ff416ec4239367a8d5c73a1 - 96.63% (85.5 MB)
[#004] sha256:5b406fd35eb716334068bbb1a0085d408bfbb457b17f1f4667ed9391991c71d7 - 0.01% (9.34 KB)
[#005] sha256:f82c416f64da7d7649414ac8f7438bf5ed7083d9310ac7adc7854ea85e0bd1b0 - 0.0% (160 Bytes)
[#006] sha256:7ccc4a0aa95f0909c8b9e64825dd4d7ce1520f6590ad833bc16e390c94d7815f - 0.0% (195 Bytes)
[#007] sha256:51a4faff0d391ada1197e2c1997ce20d911fb1d0851d223bebd500ae725d3877 - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:cb3f59b0f701cb6ef552e7f8ada1707cf82747c95b69759924061ff9ac6dbe72 in /
2023-08-07 19:49:18 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 22:26:21 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:26:22 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 22:26:22 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 22:26:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=16
2023-08-11 18:52:36 UTC/bin/sh -c #(nop) ENV PG_VERSION=16beta3
2023-08-11 18:52:36 UTC/bin/sh -c #(nop) ENV PG_SHA256=ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
2023-08-11 18:52:36 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-11 18:55:18 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-11 18:55: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-08-11 18:55:20 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-11 18:55:20 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-11 18:55:21 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-11 18:55:21 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-11 18:55:21 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-11 18:55:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-11 18:55:21 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-11 18:55:21 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-11 18:55:21 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:b674366041c555341ce36c404f5d3b14f367d1d97e8a4561ea1b035e5f012eea
2023-08-11 19:50:08 UTC
83.4 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR16
PG_SHA256ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
PG_VERSION16beta3
[#000] sha256:b82e4fd40279a40aa2eecd301fabb2dca254727cc09daa8d0caf69ac28c44af1 - 3.28% (2.74 MB)
[#001] sha256:42e4be36b6da96b6e30bc8310d8b4fcd5b95acb1a4ccc7e1ad9d36dc06def768 - 0.0% (1.25 KB)
[#002] sha256:7f5bafa018599d2138de5631f90e7b1ff7cd2deff996e3f053ef2d9beeceef65 - 0.0% (149 Bytes)
[#003] sha256:ede23e33b5a2d6ac65a926fb524a29023a75a20ea87cef3577f1a386d06d42bb - 96.7% (80.6 MB)
[#004] sha256:e2543ca2d0b13f0b72ce5cdb89c365e2ef5597c09bbd94a8dfa50c8e56305cf4 - 0.01% (9.34 KB)
[#005] sha256:b97b0fe24ed000f36a5427e2f96f9741d3bb2489594634ffe705b5224694b866 - 0.0% (160 Bytes)
[#006] sha256:8e0e9eeec124b81b85248db7fd285301f2f370468944c1b13a6156689ee0ddc2 - 0.0% (193 Bytes)
[#007] sha256:9766a2b14daa55c9f3d9f9563e31cbce6127adc41bb5b1c61394bef39af57c93 - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:7f36c30ba2b714d09a8650dba1545abdf892443dadbe9113b9a166b84ba7ac3f in /
2023-08-07 19:57:29 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 02:34:35 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:34:35 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 02:34:36 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 02:34:36 UTC/bin/sh -c #(nop) ENV PG_MAJOR=16
2023-08-11 19:47:26 UTC/bin/sh -c #(nop) ENV PG_VERSION=16beta3
2023-08-11 19:47:26 UTC/bin/sh -c #(nop) ENV PG_SHA256=ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
2023-08-11 19:47:26 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-11 19:50:05 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-11 19:50:06 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-11 19:50:07 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-11 19:50:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-11 19:50:07 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-11 19:50:07 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-11 19:50:08 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-11 19:50:08 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-11 19:50:08 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-11 19:50:08 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-11 19:50:08 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:aebb0cb80c156d45145a3c0bddcb5e1c31dcb23b881fc40ee51cdba2c4e87fb7
2023-08-11 19:08:43 UTC
88.4 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR16
PG_SHA256ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
PG_VERSION16beta3
[#000] sha256:4060ece20d7ac783f52cbe28a35fd5b06f90f7b4d773bae0d956024e85ff35b6 - 3.51% (3.11 MB)
[#001] sha256:a8016f2827cdde1339eb7194dfa4b33f9d85276c84d6d3974a82f4f7c58d9720 - 0.0% (1.25 KB)
[#002] sha256:f74698bea8d86ded3a612a5036cef63e4eb920c8f106882742225236e9839e52 - 0.0% (149 Bytes)
[#003] sha256:f8160fb6f23c29e2bc04f27cd3986dd8ab67db785b0c3397552923a232df8d97 - 96.47% (85.3 MB)
[#004] sha256:d9d1e81e6e3f8210c69972fbaedcc393de5257e95c9267b81ff688800104f40c - 0.01% (9.34 KB)
[#005] sha256:d332260d5aa66b394ee72638ef32a6942ba2f2a71553b8d2ea0ac68cf92a81ee - 0.0% (161 Bytes)
[#006] sha256:0ffc48416fdbe7713ea5369061a1f4fcb54f0db4c3883053681c1dddbe10750f - 0.0% (193 Bytes)
[#007] sha256:f798c35d09abec0d90825dee23882272e10f3ecba707dda29589ffaa17629b9a - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:9e054a25c83111adc857a7f988336ee40eea5e1794ed30a80d465e8d472342e2 in /
2023-08-07 19:39:22 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-09 03:10: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-08-09 03:10:39 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-09 03:10:39 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-09 03:10:39 UTC/bin/sh -c #(nop) ENV PG_MAJOR=16
2023-08-11 19:06:33 UTC/bin/sh -c #(nop) ENV PG_VERSION=16beta3
2023-08-11 19:06:33 UTC/bin/sh -c #(nop) ENV PG_SHA256=ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
2023-08-11 19:06:33 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-11 19:08:41 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-11 19:08:42 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-11 19: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-11 19:08:42 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-11 19:08:43 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-11 19:08:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-11 19:08:43 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-11 19:08:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-11 19:08:43 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-11 19:08:43 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-11 19:08:43 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ee784899c7a58fe06b5271ea343bfe5427ae32aba82170c2fd089ac2abe55eeb
2023-08-11 18:54:01 UTC
96.2 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR16
PG_SHA256ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
PG_VERSION16beta3
[#000] sha256:1e00d0a2a797866697ccca7b6307a9182e2852583b2b3be3928d196e4cb8ba3d - 3.36% (3.23 MB)
[#001] sha256:38ee805c1332940deaa5547186e69fea1bfb3366abe4ba8ec0b1d18e3ca64d2e - 0.0% (1.26 KB)
[#002] sha256:7666703c8b28accd4d26a4d7958273a5b2130cfe7f28d0a929665d042709193f - 0.0% (149 Bytes)
[#003] sha256:b81853c7da58647c56974a0d336c801d6636dd477d563b46750ced9b9365a9df - 96.62% (93 MB)
[#004] sha256:142c3ae1f7a5efd068e8e1d415ff979b8fd3bfbca5b1e6ed8e160ae171a67099 - 0.01% (9.35 KB)
[#005] sha256:fed879f0cde610dab8e3b72810a79ca5bfa16780101a793f0d769cb04deb4258 - 0.0% (162 Bytes)
[#006] sha256:b6719492c60c1208ecb2bb73cc7f64676794f2f72c701ae5d0b651b0b5f82f7e - 0.0% (193 Bytes)
[#007] sha256:fb820182aacffcdfcc54eaf7d032a9df8a4b9d07bf261394a31a8c367582fb82 - 0.0% (4.68 KB)
/bin/sh -c #(nop) ADD file:52f28bcdd6e1c6f85b2b5d66ace37ed6cef0da8ce5c58e246549427361b64c1d in /
2023-08-07 20:16:36 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-08 22:11:14 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:11:14 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-08 22:11:15 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-08 22:11:16 UTC/bin/sh -c #(nop) ENV PG_MAJOR=16
2023-08-11 18:50:05 UTC/bin/sh -c #(nop) ENV PG_VERSION=16beta3
2023-08-11 18:50:05 UTC/bin/sh -c #(nop) ENV PG_SHA256=ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
2023-08-11 18:50:06 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-11 18:53:50 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-11 18:53:55 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-11 18:53:57 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-11 18:53:57 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-11 18:53:58 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-11 18:53:58 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-11 18:53:59 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-11 18:53:59 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-11 18:54:00 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-11 18:54:01 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-11 18:54:01 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:b26eb5476317048d297d36b600f5d18393d2e17bc1d17bd2f03ab7a3d8d1b9d5
2023-08-11 18:49:51 UTC
91.1 MB
llvm15-dev clang15
LANGen_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR16
PG_SHA256ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
PG_VERSION16beta3
[#000] sha256:b69f31b9e61dae76a66eb3f9dd10f9f86d10116c6339347c47739dcf850af4d3 - 3.32% (3.03 MB)
[#001] sha256:3e59eb634e96bf8a3f872887f50a529b89c83d0cbfeef694892970c10e01d4e4 - 0.0% (1.26 KB)
[#002] sha256:d282f2ea523c2f52aaca3f04a677a1155b3cde3fa7a3ce5c3cab549720be2463 - 0.0% (149 Bytes)
[#003] sha256:f4305aec0d2f9e7133df2d36498db9c3139b6c7b56aedc3b6b98aebb738aa724 - 96.66% (88.1 MB)
[#004] sha256:a7ab24a2aea45d5d2f231929ef61eb22490918e14fbe581bc1322b0c929544c4 - 0.01% (9.34 KB)
[#005] sha256:a57ae788dd30172997704f9544a855f7a6ad1b4387eac2c9c04548cf018709cb - 0.0% (160 Bytes)
[#006] sha256:4d2a9b8011127427336ea461257dc2731298788a4c890d387cb6434092194785 - 0.0% (194 Bytes)
[#007] sha256:41a60fc9c318c095ff6eb22d7044f0afb3df188511fb06bc9ba8226b62a790d7 - 0.01% (4.68 KB)
/bin/sh -c #(nop) ADD file:2e221805acb91c51e7afa6b926252ab2260cdf2e166f3d917a98384f3a157622 in /
2023-08-07 19:42:02 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2023-08-09 03:08:52 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:53 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2023-08-09 03:08:53 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2023-08-09 03:08:53 UTC/bin/sh -c #(nop) ENV PG_MAJOR=16
2023-08-11 18:47:01 UTC/bin/sh -c #(nop) ENV PG_VERSION=16beta3
2023-08-11 18:47:01 UTC/bin/sh -c #(nop) ENV PG_SHA256=ffcf44e272662f6ac451a8d6d6ff951715db651c8d4907ec659cbde46abd52d3
2023-08-11 18:47:01 UTC/bin/sh -c #(nop) ENV DOCKER_PG_LLVM_DEPS=llvm15-dev clang15
2023-08-11 18:49:40 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-11 18:49:48 UTC/bin/sh -c set -eux; cp -v /usr/local/share/postgresql/postgresql.conf.sample /usr/local/share/postgresql/postgresql.conf.sample.orig; sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample; grep -F "listen_addresses = '*'" /usr/local/share/postgresql/postgresql.conf.sample
2023-08-11 18:49:49 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 3777 /var/run/postgresql
2023-08-11 18:49:49 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2023-08-11 18:49:49 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 1777 "$PGDATA"
2023-08-11 18:49:50 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2023-08-11 18:49:50 UTC/bin/sh -c #(nop) COPY file:e635913e9467265f505455bc3f08bed37d67ce6597a1f10365f8faf79f09b654 in /usr/local/bin/
2023-08-11 18:49:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2023-08-11 18:49:50 UTC/bin/sh -c #(nop) STOPSIGNAL SIGINT
2023-08-11 18:49:50 UTC/bin/sh -c #(nop) EXPOSE 5432
2023-08-11 18:49:51 UTC/bin/sh -c #(nop) CMD ["postgres"]