Namespace
library
Image / Tag
postgres:12.12-alpine
Content Digest
sha256:06398adf86069c9c2d707bc1fa6621338ae53c6601fbae318eb09e9daa50534b
Details
Created

2022-10-06 23:15:08 UTC

Size

83.7 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c

PG_VERSION

12.12


Layers

[#000] sha256:6c0d3b419d848ea31ca748254611d5d5ce3b76e3d7bba520fd87400fbb75f3b9 - 3.2% (2.68 MB)

[#001] sha256:dcc0a2d06c52831b717922c82a177581313d43ff48fa82da49ed9fe0bf8002d8 - 0.0% (1.23 KB)

[#002] sha256:3642389f32b5996f507baab5859e392131d7bce3768326935a4dfb51d4932b5a - 0.0% (115 Bytes)

[#003] sha256:c918a18354330f4d3b461e0aefe5599394c2a3730feb966b61bd5c016bf9a479 - 96.79% (81 MB)

[#004] sha256:d6b8c27491a32c7560e4a60121f3b95b7c3c71c7d1cd42628452a0bdbb3c5b8a - 0.01% (8.49 KB)

[#005] sha256:070df53f72cbb1bba99972aa555c17cb6c7f740fcb2fcb7d1f546bc9032030a9 - 0.0% (128 Bytes)

[#006] sha256:de1f5d673c7fd3a47c72fc5dd262064fb43e8730bcd11d376668542c7c7656d2 - 0.0% (174 Bytes)

[#007] sha256:a861457a0f239d3ac288b47105b9f8c11f1cc575f0005005dc8c42fcb3ecc100 - 0.01% (4.59 KB)


History
2022-08-09 17:38:39 UTC

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

2022-08-09 17:38:39 UTC

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

2022-10-06 22:58:32 UTC

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

2022-10-06 22:58:33 UTC

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

2022-10-06 22:58:34 UTC

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

2022-10-06 23:11:25 UTC

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

2022-10-06 23:11:25 UTC

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

2022-10-06 23:11:26 UTC

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

2022-10-06 23:14:58 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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-06 23:14:59 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

2022-10-06 23:15:00 UTC

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

2022-10-06 23:15:01 UTC

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

2022-10-06 23:15:02 UTC

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

2022-10-06 23:15:03 UTC

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

2022-10-06 23:15:05 UTC

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

2022-10-06 23:15:05 UTC

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

2022-10-06 23:15:06 UTC

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

2022-10-06 23:15:07 UTC

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

2022-10-06 23:15:08 UTC

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

Details
Created

2022-10-07 01:24:18 UTC

Size

78.7 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c

PG_VERSION

12.12


Layers

[#000] sha256:213ec9aee27d8be045c6a92b7eac22c9a64b44558193775a1a7f626352392b49 - 3.4% (2.68 MB)

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

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

[#003] sha256:f6aa2f60fb2d1eef3b57fe189257743d59ead4a06338f940d14f7018e06c8c9b - 96.58% (76 MB)

[#004] sha256:f61ec123eae24e36eb0d4ee094758937620c64c70584b20ee044ecb2012eafd3 - 0.01% (8.49 KB)

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

[#006] sha256:749610689de001c1bd5169bc9f623fc4d4b6d3c3026863f6593f2414d02a9d39 - 0.0% (193 Bytes)

[#007] sha256:afa0d2274beeb7c729e9549efb364a17b53b91dfa72af45416a987a36c27aa6f - 0.01% (4.6 KB)


History
2022-08-09 17:19:53 UTC

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

2022-08-09 17:19:53 UTC

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

2022-10-07 01:10:45 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

2022-10-07 01:10:45 UTC

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

2022-10-07 01:10:45 UTC

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

2022-10-07 01:21:16 UTC

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

2022-10-07 01:21:16 UTC

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

2022-10-07 01:21:16 UTC

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

2022-10-07 01:24:15 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-07 01:24:16 UTC

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

2022-10-07 01:24:17 UTC

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

2022-10-07 01:24:17 UTC

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

2022-10-07 01:24:18 UTC

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

2022-10-07 01:24:18 UTC

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

2022-10-07 01:24:18 UTC

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

2022-10-07 01:24:18 UTC

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

2022-10-07 01:24:18 UTC

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

2022-10-07 01:24:18 UTC

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

2022-10-07 01:24:18 UTC

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

Details
Created

2022-10-07 16:44:00 UTC

Size

77 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c

PG_VERSION

12.12


Layers

[#000] sha256:9506b835437abb4d8ba1683e00c500b8f77e1975e930b356fbb72f2dbdc274d9 - 3.24% (2.49 MB)

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

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

[#003] sha256:b653bcd715d7d1db278fd1ea180bffdb492423a558dfb8e5765c8049d58b9b31 - 96.74% (74.4 MB)

[#004] sha256:1a822051bda87a7d7450a6005030b07532b32590cf002cc6b9456b89a99a43fe - 0.01% (8.49 KB)

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

[#006] sha256:7937273714a53c4dd9868956e31359d590aa52bf614c11b09ade5bd41ab30d78 - 0.0% (194 Bytes)

[#007] sha256:e613d7fc249d5985cfd818ab85a94b956a6419b285927f4706e466d66be79f99 - 0.01% (4.6 KB)


History
2022-08-09 17:49:22 UTC

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

2022-08-09 17:49:22 UTC

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

2022-10-07 15:56:27 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

2022-10-07 15:56:28 UTC

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

2022-10-07 15:56:28 UTC

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

2022-10-07 16:32:55 UTC

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

2022-10-07 16:32:56 UTC

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

2022-10-07 16:32:56 UTC

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

2022-10-07 16:43:56 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-07 16:43:57 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

2022-10-07 16:43:58 UTC

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

2022-10-07 16:43:58 UTC

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

2022-10-07 16:43:59 UTC

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

2022-10-07 16:43:59 UTC

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

2022-10-07 16:43:59 UTC

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

2022-10-07 16:43:59 UTC

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

2022-10-07 16:43:59 UTC

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

2022-10-07 16:44:00 UTC

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

2022-10-07 16:44:00 UTC

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

Details
Created

2022-10-25 22:54:33 UTC

Size

72.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c

PG_VERSION

12.12


Layers

[#000] sha256:c6556b3b6858c6fa1e328377cc2c4becdc9cd1bc3e7302aa7299936522cf93ba - 3.19% (2.31 MB)

[#001] sha256:3bf2f923de8a6d683ecedaed891a43887abcbed8db58206db4fb2575bf657302 - 0.0% (1.23 KB)

[#002] sha256:4f04bc58499919864f6f536832fc3a4bb2f5f2ff4acacd90b4dcad1f7359c2a8 - 0.0% (115 Bytes)

[#003] sha256:c9e44e6854b030ae5fd2aa7b26911897db2c8e55fe0ee1d7406840e784b72215 - 96.8% (70.1 MB)

[#004] sha256:6e4d9579a0d7bde0c1ec278487fcd17eea470dcd33b46007024c9442179a1814 - 0.01% (8.49 KB)

[#005] sha256:d555294770d1d80068321fdc6d9c6c4b4fff58957b3a55fd02ba064fdbd06073 - 0.0% (129 Bytes)

[#006] sha256:88bc20804dfda608f1f7464e540577dcf47652282fad4a73facd9527020e6342 - 0.0% (163 Bytes)

[#007] sha256:43bbe1ab457dbe33d2c0a9e4862f40ced011fa3bfeb0fe949dcacb23a04d6fc0 - 0.01% (4.59 KB)


History
2022-08-09 16:57:44 UTC

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

2022-08-09 16:57:44 UTC

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

2022-10-25 22:00:42 UTC

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

2022-10-25 22:00:42 UTC

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

2022-10-25 22:00:43 UTC

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

2022-10-25 22:51:26 UTC

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

2022-10-25 22:51:26 UTC

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

2022-10-25 22:51:26 UTC

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

2022-10-25 22:54: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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-25 22:54: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

2022-10-25 22:54:32 UTC

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

2022-10-25 22:54:32 UTC

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

2022-10-25 22:54:32 UTC

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

2022-10-25 22:54:32 UTC

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

2022-10-25 22:54:32 UTC

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

2022-10-25 22:54:33 UTC

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

2022-10-25 22:54:33 UTC

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

2022-10-25 22:54:33 UTC

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

2022-10-25 22:54:33 UTC

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

Details
Created

2022-10-25 20:15:21 UTC

Size

77.6 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c

PG_VERSION

12.12


Layers

[#000] sha256:9b18e9b68314027565b90ff6189d65942c0f7986da80df008b8431276885218e - 3.33% (2.58 MB)

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

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

[#003] sha256:f2bed8a641d14d4de208dfc0154cd0265334eaed51327bd52dffbcae3c7bef65 - 96.66% (75 MB)

[#004] sha256:01c960e5ec746ef7d72fa52ccadbb64c502904f3fe0671db3ad7114b3807e0ee - 0.01% (8.49 KB)

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

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

[#007] sha256:18bfab6371a9d3d0df3ff5c168d8e1bbbb3dbf72394f8dcc6a236fac25eba0cd - 0.01% (4.59 KB)


History
2022-08-09 17:39:41 UTC

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

2022-08-09 17:39:42 UTC

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

2022-10-25 20:04:17 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

2022-10-25 20:04:17 UTC

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

2022-10-25 20:04:17 UTC

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

2022-10-25 20:13:04 UTC

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

2022-10-25 20:13:04 UTC

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

2022-10-25 20:13:04 UTC

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

2022-10-25 20:15: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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-25 20:15: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

2022-10-25 20:15:20 UTC

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

2022-10-25 20:15:20 UTC

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

2022-10-25 20:15:20 UTC

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

2022-10-25 20:15:20 UTC

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

2022-10-25 20:15:20 UTC

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

2022-10-25 20:15:21 UTC

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

2022-10-25 20:15:21 UTC

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

2022-10-25 20:15:21 UTC

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

2022-10-25 20:15:21 UTC

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

Details
Created

2022-10-07 02:44:26 UTC

Size

84.5 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c

PG_VERSION

12.12


Layers

[#000] sha256:c79e5d1a8c89b87020a754c8a5c8370faaa37bfb5bca1d8af66770d522ef1caf - 3.16% (2.67 MB)

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

[#002] sha256:6dca1982ca555c7b16501b90c9ee856d6d3a531258352fd09a5db82ef45f9984 - 0.0% (148 Bytes)

[#003] sha256:37eb4b630dc82e16a2caebda1e66e06c7d0a57f658353ecb70ca561dce938a87 - 96.82% (81.8 MB)

[#004] sha256:5a0d0b28f9e40160dc59b26e7b72112af5416d0892a5e73b86dbff858f3a623d - 0.01% (8.49 KB)

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

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

[#007] sha256:ae7be7bfdfb911ce677b1f1b33a57946536c4670b679bec743bf75bd2d031221 - 0.01% (4.6 KB)


History
2022-08-09 17:17:09 UTC

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

2022-08-09 17:17:10 UTC

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

2022-10-07 02:25: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

2022-10-07 02:25:59 UTC

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

2022-10-07 02:26:00 UTC

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

2022-10-07 02:40:14 UTC

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

2022-10-07 02:40:15 UTC

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

2022-10-07 02:40:15 UTC

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

2022-10-07 02:44: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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-07 02:44: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

2022-10-07 02:44:23 UTC

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

2022-10-07 02:44:23 UTC

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

2022-10-07 02:44:24 UTC

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

2022-10-07 02:44:24 UTC

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

2022-10-07 02:44:25 UTC

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

2022-10-07 02:44:25 UTC

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

2022-10-07 02:44:25 UTC

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

2022-10-07 02:44:26 UTC

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

2022-10-07 02:44:26 UTC

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

Details
Created

2022-10-07 03:53:32 UTC

Size

79.7 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

12

PG_SHA256

34b3f1c69408e22068c0c71b1827691f1c89153b0ad576c1a44f8920a858039c

PG_VERSION

12.12


Layers

[#000] sha256:790c84f1f3409eab952345157df7fa804ba6b5f06d4ceb6f2dfa3c6de2064397 - 3.1% (2.47 MB)

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

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

[#003] sha256:c7de8f16e2d1f50a23b11b79103aefef41b10f5759081d357b9c35ae7224e75c - 96.88% (77.3 MB)

[#004] sha256:baeead15182f020da71f2f2bbeae6250181554b7d0f1d2147488675e1f0c12da - 0.01% (8.49 KB)

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

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

[#007] sha256:594cbc237c6da3bd193735a472ce6a2a68520ea1f69f72d35c2d4f52e0b3f6ae - 0.01% (4.59 KB)


History
2022-08-09 17:41:46 UTC

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

2022-08-09 17:41:46 UTC

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

2022-10-07 03:35: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

2022-10-07 03:35:39 UTC

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

2022-10-07 03:35:41 UTC

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

2022-10-07 03:49:16 UTC

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

2022-10-07 03:49:16 UTC

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

2022-10-07 03:49:16 UTC

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

2022-10-07 03:53: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 bison coreutils dpkg-dev dpkg flex gcc krb5-dev libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers llvm-dev clang g++ make openldap-dev openssl-dev perl-dev perl-ipc-run perl-utils python3-dev tcl-dev util-linux-dev zlib-dev icu-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'; ./configure --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-krb5 --with-gssapi --with-ldap --with-tcl --with-perl --with-python --with-openssl --with-libxml --with-libxslt --with-icu --with-llvm ; 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 del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-10-07 03:53:27 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

2022-10-07 03:53:28 UTC

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

2022-10-07 03:53:28 UTC

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

2022-10-07 03:53:30 UTC

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

2022-10-07 03:53:30 UTC

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

2022-10-07 03:53:30 UTC

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

2022-10-07 03:53:30 UTC

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

2022-10-07 03:53:31 UTC

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

2022-10-07 03:53:31 UTC

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

2022-10-07 03:53:32 UTC

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