Namespace
library
Image / Tag
postgres:15.3-alpine
Content Digest
sha256:4ca65a9209f164bdb30f715ac2ed9182cc0737d0f0a549031b3c1b0b7e652f3a
Details
Created

2023-08-08 20:55:10 UTC

Size

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

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

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

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

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

[#003] sha256:992915ae2908e2a94063fca232dd2941fd58cf9f4f212e7b398fc8633fb44aec - 96.69% (90.7 MB)

[#004] sha256:607b450f70bea9d1f4d22f38ba41c4ff73c1c9b6307265bf5978340300b20425 - 0.01% (9.23 KB)

[#005] sha256:d7c90cdb35b2f70a430920141612334727e3f393b311408e85588f96f56c161d - 0.0% (163 Bytes)

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

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


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

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

2023-08-07 19:38:27 UTC

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

2023-08-08 20:38:44 UTC

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

2023-08-08 20:38:44 UTC

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

2023-08-08 20:38:45 UTC

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

2023-08-08 20:50:03 UTC

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

2023-08-08 20:50:03 UTC

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

2023-08-08 20:50:03 UTC

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

2023-08-08 20:50:03 UTC

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

2023-08-08 20:55:07 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-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 20:55:09 UTC

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

2023-08-08 20:55:09 UTC

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

2023-08-08 20:55:09 UTC

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

2023-08-08 20:55:10 UTC

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

2023-08-08 20:55:10 UTC

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

2023-08-08 20:55:10 UTC

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

2023-08-08 20:55:10 UTC

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

2023-08-08 20:55:10 UTC

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

2023-08-08 20:55:10 UTC

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

2023-08-08 20:55:10 UTC

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

Details
Created

2023-08-09 02:35:31 UTC

Size

89 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

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

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

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

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

[#003] sha256:791ddfa1c0dcdf438ac4963bce98b25a047c79a94f784a02415d0ffa124e9031 - 96.34% (85.8 MB)

[#004] sha256:2c9003b37399c1d6de18c93bf0b279a34c42f1ff3239411c8937e4e64bbe8e8f - 0.01% (9.23 KB)

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

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

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


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

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

2023-08-07 19:20:20 UTC

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

2023-08-09 02:26:58 UTC

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

2023-08-09 02:26:58 UTC

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

2023-08-09 02:26:58 UTC

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

2023-08-09 02:32:50 UTC

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

2023-08-09 02:32:50 UTC

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

2023-08-09 02:32:50 UTC

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

2023-08-09 02:32:50 UTC

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

2023-08-09 02:35:28 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $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-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-09 02:35:29 UTC

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

2023-08-09 02:35:30 UTC

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

2023-08-09 02:35:30 UTC

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

2023-08-09 02:35:30 UTC

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

2023-08-09 02:35:30 UTC

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

2023-08-09 02:35:31 UTC

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

2023-08-09 02:35:31 UTC

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

2023-08-09 02:35:31 UTC

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

2023-08-09 02:35:31 UTC

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

2023-08-09 02:35:31 UTC

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

Details
Created

2023-08-08 22:32:55 UTC

Size

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

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

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

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

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

[#003] sha256:511c81f5966217c00f883f386d1a06cde82a5c2b58bfcc597e52445df1f7404f - 96.57% (84.8 MB)

[#004] sha256:393de6d454e4b89a690de677d4581f51019b7aa4b9acf4e6c8623df29b5570e9 - 0.01% (9.23 KB)

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

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

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


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

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

2023-08-07 19:49:15 UTC

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

2023-08-08 22:22:43 UTC

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

2023-08-08 22:22:43 UTC

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

2023-08-08 22:22:44 UTC

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

2023-08-08 22:29:29 UTC

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

2023-08-08 22:29:29 UTC

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

2023-08-08 22:29:29 UTC

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

2023-08-08 22:29:29 UTC

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

2023-08-08 22:32:52 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-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 22:32:53 UTC

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

2023-08-08 22:32:53 UTC

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

2023-08-08 22:32:54 UTC

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

2023-08-08 22:32:54 UTC

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

2023-08-08 22:32:54 UTC

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

2023-08-08 22:32:54 UTC

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

2023-08-08 22:32:54 UTC

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

2023-08-08 22:32:54 UTC

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

2023-08-08 22:32:55 UTC

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

2023-08-08 22:32:55 UTC

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

Details
Created

2023-08-08 02:39:32 UTC

Size

82.7 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

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

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

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

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

[#003] sha256:d6904c1e5052e850eafe720edf8164b66571de9cdade5815dee1de59014de09c - 96.64% (79.9 MB)

[#004] sha256:ed74519ebc8ccb72072706f842f06be70f4bcf1f029b67776929488552dd3fe9 - 0.01% (9.23 KB)

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

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

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


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

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

2023-08-07 19:57:25 UTC

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

2023-08-08 02:31:57 UTC

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

2023-08-08 02:31:57 UTC

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

2023-08-08 02:31:58 UTC

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

2023-08-08 02:37:16 UTC

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

2023-08-08 02:37:16 UTC

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

2023-08-08 02:37:16 UTC

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

2023-08-08 02:37:16 UTC

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

2023-08-08 02:39:29 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-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 02:39:30 UTC

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

2023-08-08 02:39:30 UTC

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

2023-08-08 02:39:30 UTC

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

2023-08-08 02:39:31 UTC

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

2023-08-08 02:39:31 UTC

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

2023-08-08 02:39:31 UTC

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

2023-08-08 02:39:31 UTC

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

2023-08-08 02:39:31 UTC

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

2023-08-08 02:39:31 UTC

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

2023-08-08 02:39:32 UTC

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

Details
Created

2023-08-09 03:15:04 UTC

Size

88 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

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

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

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

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

[#003] sha256:eb307cc1ffd33437f9b4aec1d7139cadd1b018d6840f49759d14016649884616 - 96.37% (84.8 MB)

[#004] sha256:99aedaa309dfbb213310d2f8e92a7767ce404904d61de5f41c7310c853cb31df - 0.01% (9.23 KB)

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

[#006] sha256:278b6fc01aef17a4c772161331c89c2fecdc874013d196651280abb83c16c1f0 - 0.0% (197 Bytes)

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


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

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

2023-08-07 19:39:19 UTC

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

2023-08-09 03:08:16 UTC

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

2023-08-09 03:08:16 UTC

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

2023-08-09 03:08:16 UTC

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

2023-08-09 03:13:05 UTC

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

2023-08-09 03:13:05 UTC

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

2023-08-09 03:13:05 UTC

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

2023-08-09 03:13:05 UTC

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

2023-08-09 03:15:01 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps $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-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-09 03:15:02 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:03 UTC

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

2023-08-09 03:15:04 UTC

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

Details
Created

2023-08-08 22:19:29 UTC

Size

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

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

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

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

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

[#003] sha256:94f2b006651c88f6f24478707b436ed0511a516c4d74c3c74bf73de9ed7e16a4 - 96.61% (91.2 MB)

[#004] sha256:eccea2206c3f747eaecf4e82cea22d1dab3c3b566d76c9f590af37f98092b7c8 - 0.01% (9.23 KB)

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

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

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


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

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

2023-08-07 20:16:26 UTC

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

2023-08-08 22:06:51 UTC

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

2023-08-08 22:06:52 UTC

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

2023-08-08 22:06:53 UTC

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

2023-08-08 22:15:42 UTC

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

2023-08-08 22:15:43 UTC

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

2023-08-08 22:15:43 UTC

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

2023-08-08 22:15:44 UTC

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

2023-08-08 22:19: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-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-08 22:19:23 UTC

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

2023-08-08 22:19:24 UTC

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

2023-08-08 22:19:24 UTC

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

2023-08-08 22:19:26 UTC

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

2023-08-08 22:19:26 UTC

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

2023-08-08 22:19:27 UTC

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

2023-08-08 22:19:27 UTC

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

2023-08-08 22:19:27 UTC

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

2023-08-08 22:19:28 UTC

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

2023-08-08 22:19:29 UTC

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

Details
Created

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

15

PG_SHA256

ffc7d4891f00ffbf5c3f4eab7fbbced8460b8c0ee63c5a5167133b9e6599d932

PG_VERSION

15.3


Layers

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

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

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

[#003] sha256:bc4a526ba77efce9d28c13f12be5146a829cb4ff85c622cc8154eb2aef2d8e00 - 96.6% (87.5 MB)

[#004] sha256:742dde5454421a14d4723fcf6a8c524c3aa1a0a0b561526bcb0baee2bfde639c - 0.01% (9.23 KB)

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

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

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


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

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

2023-08-07 19:41:55 UTC

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

2023-08-09 03:06:01 UTC

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

2023-08-09 03:06:02 UTC

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

2023-08-09 03:06:02 UTC

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

2023-08-09 03:11:54 UTC

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

2023-08-09 03:11:54 UTC

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

2023-08-09 03:11:55 UTC

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

2023-08-09 03:11:55 UTC

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

2023-08-09 03:14: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-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm --with-lz4 --with-zstd ; make -j "$(nproc)" world; make install-world; make -C contrib install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | grep -v -e perl -e python -e tcl )"; apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata zstd icu-data-full $([ "$(apk --print-arch)" != 'ppc64le' ] && echo 'nss_wrapper') ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2023-08-09 03:14: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-08-09 03:14:32 UTC

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

2023-08-09 03:14:32 UTC

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

2023-08-09 03:14:33 UTC

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

2023-08-09 03:14:33 UTC

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

2023-08-09 03:14:33 UTC

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

2023-08-09 03:14:33 UTC

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

2023-08-09 03:14:34 UTC

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

2023-08-09 03:14:34 UTC

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

2023-08-09 03:14:34 UTC

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