Namespace
library
Image / Tag
postgres:13.7-alpine
Content Digest
sha256:23d0ecb63d68896b31b518f636d3bf8bde96308772e97c937c3f175ca1c5c95f
Details
Created

2022-08-09 21:05:53 UTC

Size

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

13

PG_SHA256

1b905bf4f3d83614a393b3c51fd345910fd261e4f5124a68d9a1fdd3a2a46399

PG_VERSION

13.7


Layers

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

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

[#002] sha256:5ec2f418c543a35f5a9bd4622f8333170308c8bfc39d60776c46f8cd414f6218 - 0.0% (115 Bytes)

[#003] sha256:5b6c88353cfb5967c0254a715fab1f071d9821142e17852f2630ae09dbd6861a - 96.81% (81.7 MB)

[#004] sha256:f5c539417e6545feeedaa08a87aea9a63e07c90b341cdade0ca80ce192ca2d92 - 0.01% (8.81 KB)

[#005] sha256:902b9365cfe41c2d2aa547edee7cbb3f0fe3e22808e521a6164354b574efc338 - 0.0% (128 Bytes)

[#006] sha256:b50bcdb683f884605e299736f08f0ea22e74a051269e015206bceecc0d1ef535 - 0.0% (170 Bytes)

[#007] sha256:d1866ce1548c29eaee6183385a3a006d0b12161a4b7533370da5c016900e19e7 - 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-08-09 20:53:15 UTC

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

2022-08-09 20:53:16 UTC

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

2022-08-09 20:53:17 UTC

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

2022-08-09 21:02:05 UTC

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

2022-08-09 21:02:06 UTC

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

2022-08-09 21:02:07 UTC

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

2022-08-09 21:05:44 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-08-09 21:05:44 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-08-09 21:05:45 UTC

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

2022-08-09 21:05:46 UTC

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

2022-08-09 21:05:47 UTC

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

2022-08-09 21:05:48 UTC

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

2022-08-09 21:05:50 UTC

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

2022-08-09 21:05:50 UTC

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

2022-08-09 21:05:51 UTC

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

2022-08-09 21:05:52 UTC

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

2022-08-09 21:05:53 UTC

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

Details
Created

2022-08-09 23:20:51 UTC

Size

79.3 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

13

PG_SHA256

1b905bf4f3d83614a393b3c51fd345910fd261e4f5124a68d9a1fdd3a2a46399

PG_VERSION

13.7


Layers

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

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

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

[#003] sha256:436ec42e72c52ba911dcdfa295605576e2ccbac2edb1043d29e733fa9666fa48 - 96.61% (76.7 MB)

[#004] sha256:454b91e229f0fd853fc53aa78568fc29a26b361598136bbed5ba1b9df1515cb7 - 0.01% (8.82 KB)

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

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

[#007] sha256:40ec0e7b9736fbb66891b1034975f24a2d3e827021310bf45b73a8f79a674f58 - 0.01% (4.59 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-08-09 23:10:36 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-08-09 23:10:37 UTC

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

2022-08-09 23:10:37 UTC

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

2022-08-09 23:17:42 UTC

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

2022-08-09 23:17:42 UTC

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

2022-08-09 23:17:42 UTC

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

2022-08-09 23:20:48 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-08-09 23:20:49 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-08-09 23:20:50 UTC

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

2022-08-09 23:20:50 UTC

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

2022-08-09 23:20:51 UTC

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

2022-08-09 23:20:51 UTC

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

2022-08-09 23:20:51 UTC

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

2022-08-09 23:20:51 UTC

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

2022-08-09 23:20:51 UTC

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

2022-08-09 23:20:51 UTC

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

2022-08-09 23:20:51 UTC

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

Details
Created

2022-08-10 17:06:53 UTC

Size

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

13

PG_SHA256

1b905bf4f3d83614a393b3c51fd345910fd261e4f5124a68d9a1fdd3a2a46399

PG_VERSION

13.7


Layers

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

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

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

[#003] sha256:d35062e332d178405efd5ff71f384b7885528a7cd5b4ce7e66b2d859ad421670 - 96.77% (75 MB)

[#004] sha256:a66fd1375648c4785fc056bf6d3dfcc5e9d74a38eae347e93e95fa2df1695bef - 0.01% (8.81 KB)

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

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

[#007] sha256:3932218692fc90d9265d490f9d1b4c895889fee3a7d6332093d66f15b1a10841 - 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-08-10 16:32:48 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-08-10 16:32:48 UTC

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

2022-08-10 16:32:49 UTC

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

2022-08-10 16:55:55 UTC

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

2022-08-10 16:55:55 UTC

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

2022-08-10 16:55:55 UTC

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

2022-08-10 17:06: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 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-08-10 17:06:51 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-08-10 17:06:51 UTC

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

2022-08-10 17:06:52 UTC

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

2022-08-10 17:06:52 UTC

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

2022-08-10 17:06:52 UTC

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

2022-08-10 17:06:53 UTC

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

2022-08-10 17:06:53 UTC

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

2022-08-10 17:06:53 UTC

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

2022-08-10 17:06:53 UTC

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

2022-08-10 17:06:53 UTC

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

Details
Created

2022-08-10 20:06:21 UTC

Size

72.9 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

13

PG_SHA256

1b905bf4f3d83614a393b3c51fd345910fd261e4f5124a68d9a1fdd3a2a46399

PG_VERSION

13.7


Layers

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

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

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

[#003] sha256:5cc7623a3e4876258e410fe562026134da46f0b371b8d9f7e5141126e5c54daf - 96.82% (70.6 MB)

[#004] sha256:149e5b098f9c826f2d1b789914d82d8d844eab57b3882fa053556daa38df5915 - 0.01% (8.81 KB)

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

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

[#007] sha256:b1091e93d6ef061796b384f4af81e5a912ea95634164eb660ae424a29b2f3378 - 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-08-10 19:31:18 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-08-10 19:31:18 UTC

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

2022-08-10 19:31:19 UTC

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

2022-08-10 19:55:04 UTC

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

2022-08-10 19:55:04 UTC

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

2022-08-10 19:55:04 UTC

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

2022-08-10 20:06:19 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-08-10 20:06: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

2022-08-10 20:06:20 UTC

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

2022-08-10 20:06:20 UTC

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

2022-08-10 20:06:21 UTC

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

2022-08-10 20:06:21 UTC

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

2022-08-10 20:06:21 UTC

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

2022-08-10 20:06:21 UTC

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

2022-08-10 20:06:21 UTC

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

2022-08-10 20:06:21 UTC

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

2022-08-10 20:06:21 UTC

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

Details
Created

2022-08-10 02:38:21 UTC

Size

78.2 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

13

PG_SHA256

1b905bf4f3d83614a393b3c51fd345910fd261e4f5124a68d9a1fdd3a2a46399

PG_VERSION

13.7


Layers

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

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

[#002] sha256:8207736937506f07b9ceed008216a1acbd1e12c8e770a48463266154eea5a296 - 0.0% (115 Bytes)

[#003] sha256:beb2c557d9815425e051c7edbe93cad3a2e75de4104cb24fcf9844e727dd9ca2 - 96.68% (75.7 MB)

[#004] sha256:ba07519367cd6c38612aa6811f561f7b097ffb1ee89b9a09f34910725064fce7 - 0.01% (8.81 KB)

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

[#006] sha256:24d00d7218856ba899cc76096627980e200aa4a703aa5ff8886c497fe38197e2 - 0.0% (169 Bytes)

[#007] sha256:5badf62b987eab9b8a218f6ceda25c74feeac720bc96456171864112e3feb708 - 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-08-10 02:26: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-08-10 02:26:40 UTC

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

2022-08-10 02:26:41 UTC

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

2022-08-10 02:34:59 UTC

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

2022-08-10 02:35:00 UTC

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

2022-08-10 02:35:01 UTC

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

2022-08-10 02:38:12 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-08-10 02:38:13 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-08-10 02:38:13 UTC

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

2022-08-10 02:38:14 UTC

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

2022-08-10 02:38:15 UTC

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

2022-08-10 02:38:16 UTC

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

2022-08-10 02:38:18 UTC

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

2022-08-10 02:38:18 UTC

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

2022-08-10 02:38:19 UTC

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

2022-08-10 02:38:20 UTC

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

2022-08-10 02:38:21 UTC

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

Details
Created

2022-08-09 22:24:56 UTC

Size

85.2 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

13

PG_SHA256

1b905bf4f3d83614a393b3c51fd345910fd261e4f5124a68d9a1fdd3a2a46399

PG_VERSION

13.7


Layers

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

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

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

[#003] sha256:710bbf66690a9f696126a8686dbd4d522150ff0444fd45b6db38c2406014fb45 - 96.85% (82.5 MB)

[#004] sha256:313ad0fb8422cac58603b8974c24715e17d17081fde03cfc8276aee799dd51ad - 0.01% (8.82 KB)

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

[#006] sha256:26b340cada02f67afa84e22d8b11fb6a5ae5cc08256cb5464668b4b48e5142bc - 0.0% (194 Bytes)

[#007] sha256:f4bf1e5b2b821f46b5710d0dbe3062712cfad875f2131f57d24232aa567be6d2 - 0.01% (4.59 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-08-09 22:10: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-08-09 22:10:32 UTC

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

2022-08-09 22:10:33 UTC

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

2022-08-09 22:20:32 UTC

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

2022-08-09 22:20:33 UTC

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

2022-08-09 22:20:33 UTC

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

2022-08-09 22:24:47 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-08-09 22:24:51 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-08-09 22:24:53 UTC

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

2022-08-09 22:24:53 UTC

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

2022-08-09 22:24:54 UTC

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

2022-08-09 22:24:54 UTC

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

2022-08-09 22:24:55 UTC

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

2022-08-09 22:24:55 UTC

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

2022-08-09 22:24:55 UTC

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

2022-08-09 22:24:55 UTC

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

2022-08-09 22:24:56 UTC

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

Details
Created

2022-08-10 02:48:48 UTC

Size

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

13

PG_SHA256

1b905bf4f3d83614a393b3c51fd345910fd261e4f5124a68d9a1fdd3a2a46399

PG_VERSION

13.7


Layers

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

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

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

[#003] sha256:4a80d200a82aefe618b207b72529e6ab4360b0d8742f71bd24da22767b139b47 - 96.91% (77.9 MB)

[#004] sha256:7d24f419647b30dbbd1f638e1088d5c256baf8dd1782458ce73dfed549b9145f - 0.01% (8.81 KB)

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

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

[#007] sha256:addaa2cb6ab93d64d6df3021226cb8b35ebb2afc045082a209e235b6c323f515 - 0.01% (4.6 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-08-10 02:38:11 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-08-10 02:38:12 UTC

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

2022-08-10 02:38:12 UTC

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

2022-08-10 02:45:52 UTC

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

2022-08-10 02:45:52 UTC

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

2022-08-10 02:45:52 UTC

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

2022-08-10 02:48:42 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-08-10 02:48:46 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-08-10 02:48:47 UTC

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

2022-08-10 02:48:47 UTC

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

2022-08-10 02:48:47 UTC

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

2022-08-10 02:48:47 UTC

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

2022-08-10 02:48:48 UTC

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

2022-08-10 02:48:48 UTC

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

2022-08-10 02:48:48 UTC

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

2022-08-10 02:48:48 UTC

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

2022-08-10 02:48:48 UTC

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