Namespace
library
Image / Tag
postgres:11.15-alpine
Content Digest
sha256:0587b52b66f3ea958d61561018946175434921a00827cf1d538fed9e828c00bf
Details
Created

2022-04-05 04:33:21 UTC

Size

80 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

11

PG_SHA256

c8f58e8ebd4f4567f4f9ba1032eb3e99e0251d87cbe3e564b485590e37a879e3

PG_VERSION

11.15


Layers

[#000] sha256:73b28a5955ec7fb46f2cf0434e4901a889f7dda3f8c9ec496300feb256c7eda8 - 3.36% (2.69 MB)

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

[#002] sha256:58f96dc8fa9ed931f47d352471b5f575a1bc1895361bfa37f9b002333ca26c1b - 0.0% (115 Bytes)

[#003] sha256:e2886180e281cf9a3de6677eb2a56d1b2a30db4662dd791fca47d80d2455482d - 96.62% (77.2 MB)

[#004] sha256:03685f18df418990850bde4be804a71895f56f95908b32524bbf151c0a5972f1 - 0.01% (7.8 KB)

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

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

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


History
2022-04-04 23:38:25 UTC

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

2022-04-04 23:38:25 UTC

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

2022-04-05 04:18:33 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-04-05 04:18:34 UTC

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

2022-04-05 04:18:35 UTC

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

2022-04-05 04:30:01 UTC

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

2022-04-05 04:30:02 UTC

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

2022-04-05 04:30:03 UTC

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

2022-04-05 04:33: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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 04:33:12 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-04-05 04:33:13 UTC

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

2022-04-05 04:33:14 UTC

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

2022-04-05 04:33:15 UTC

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

2022-04-05 04:33:16 UTC

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

2022-04-05 04:33:18 UTC

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

2022-04-05 04:33:18 UTC

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

2022-04-05 04:33:19 UTC

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

2022-04-05 04:33:20 UTC

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

2022-04-05 04:33:21 UTC

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

Details
Created

2022-04-05 07:44:06 UTC

Size

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

11

PG_SHA256

c8f58e8ebd4f4567f4f9ba1032eb3e99e0251d87cbe3e564b485590e37a879e3

PG_VERSION

11.15


Layers

[#000] sha256:df9b9388f04ad6279a7410b85cedfdcb2208c0a003da7ab5613af71079148139 - 3.56% (2.68 MB)

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

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

[#003] sha256:37aa3815cea842d5f53b10b87d080b8b5cd8f9d8cb0ac937ce7d3a2663cecb2f - 96.42% (72.8 MB)

[#004] sha256:b18a8a11c909f7f2893789e410a0403bebe013f5a5c48430ca805f2f7d0ea5bb - 0.01% (7.8 KB)

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

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

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


History
2022-04-05 00:19:59 UTC

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

2022-04-05 00:19:59 UTC

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

2022-04-05 07:24: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-04-05 07:24:39 UTC

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

2022-04-05 07:24:40 UTC

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

2022-04-05 07:39:35 UTC

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

2022-04-05 07:39:36 UTC

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

2022-04-05 07:39:36 UTC

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

2022-04-05 07:44:03 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 07:44:04 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-04-05 07:44:05 UTC

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

2022-04-05 07:44:05 UTC

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

2022-04-05 07:44:05 UTC

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

2022-04-05 07:44:06 UTC

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

2022-04-05 07:44:06 UTC

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

2022-04-05 07:44:06 UTC

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

2022-04-05 07:44:06 UTC

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

2022-04-05 07:44:06 UTC

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

2022-04-05 07:44:06 UTC

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

Details
Created

2022-04-05 07:05:19 UTC

Size

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

11

PG_SHA256

c8f58e8ebd4f4567f4f9ba1032eb3e99e0251d87cbe3e564b485590e37a879e3

PG_VERSION

11.15


Layers

[#000] sha256:c319b1fc4ed70b8241a7ce6ac0c4015d354bf5cf8c01eb73c50b6709c0c46e49 - 3.41% (2.5 MB)

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

[#002] sha256:2d6281d8a0ebe004d81faf000876292bc4f792eb730ac75d51aaeca917db6eb0 - 0.0% (148 Bytes)

[#003] sha256:ce43e517d6a90e18307f3be307bd41b16411f8b6207193b848821b76dbf8465c - 96.57% (70.9 MB)

[#004] sha256:9891c7f32f07f082d07b66aefdd54f6a61af990d26715f0d1bec47bf65e099ab - 0.01% (7.8 KB)

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

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

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


History
2022-04-04 23:49:42 UTC

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

2022-04-04 23:49:42 UTC

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

2022-04-05 06:44:13 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-04-05 06:44:13 UTC

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

2022-04-05 06:44:15 UTC

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

2022-04-05 07:00:28 UTC

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

2022-04-05 07:00:28 UTC

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

2022-04-05 07:00:28 UTC

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

2022-04-05 07:05:11 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 07:05: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-04-05 07:05:15 UTC

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

2022-04-05 07:05:15 UTC

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

2022-04-05 07:05:17 UTC

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

2022-04-05 07:05:17 UTC

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

2022-04-05 07:05:18 UTC

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

2022-04-05 07:05:18 UTC

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

2022-04-05 07:05:18 UTC

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

2022-04-05 07:05:19 UTC

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

2022-04-05 07:05:19 UTC

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

Details
Created

2022-04-05 11:00:48 UTC

Size

69 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

11

PG_SHA256

c8f58e8ebd4f4567f4f9ba1032eb3e99e0251d87cbe3e564b485590e37a879e3

PG_VERSION

11.15


Layers

[#000] sha256:57fb4b5f1a47c953ca5703f0f81ce14e5d01cf23aa79558b5adb961cc526e320 - 3.35% (2.31 MB)

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

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

[#003] sha256:55e7d0b25ee2491ea74357aabbcd3f9951c813b2b75ea19d5e14ef085e839e69 - 96.63% (66.7 MB)

[#004] sha256:03699808a61dafe2de80984da084c9da77f9a8006c557232bbc9e91f2bc3449a - 0.01% (7.8 KB)

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

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

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


History
2022-04-04 23:57:34 UTC

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

2022-04-04 23:57:35 UTC

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

2022-04-05 10:40:04 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-04-05 10:40:05 UTC

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

2022-04-05 10:40:06 UTC

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

2022-04-05 10:56:10 UTC

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

2022-04-05 10:56:11 UTC

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

2022-04-05 10:56:11 UTC

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

2022-04-05 11:00:39 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 11:00:41 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-04-05 11:00:43 UTC

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

2022-04-05 11:00:43 UTC

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

2022-04-05 11:00:45 UTC

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

2022-04-05 11:00:45 UTC

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

2022-04-05 11:00:46 UTC

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

2022-04-05 11:00:46 UTC

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

2022-04-05 11:00:47 UTC

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

2022-04-05 11:00:47 UTC

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

2022-04-05 11:00:48 UTC

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

Details
Created

2022-04-05 04:36:16 UTC

Size

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

11

PG_SHA256

c8f58e8ebd4f4567f4f9ba1032eb3e99e0251d87cbe3e564b485590e37a879e3

PG_VERSION

11.15


Layers

[#000] sha256:9981e73032c8833e387a8f96986e560edbed12c38119e0edb0439c9c2234eac9 - 3.48% (2.59 MB)

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

[#002] sha256:51338f5c9ae13e18e64d58b7ceacd16d0004c01ea9a50e77307e9c26794559a5 - 0.0% (115 Bytes)

[#003] sha256:6a031c57ddc85051819aee2a0c9defb234823e81d316dcae2c51d4449b8e470c - 96.5% (71.8 MB)

[#004] sha256:347df67824aa8f5e4e95a25067600d3371e8a9ce6f81dbf9e148caf3030a2a44 - 0.01% (7.81 KB)

[#005] sha256:9b5c0ae5ace00907cc8fba86bf81e85f09bb4996087023d3e44586ceee61991b - 0.0% (128 Bytes)

[#006] sha256:6d4db65968e644b8ee9df8a7c423e0d67714c30a5852810b58820f60f952f1c8 - 0.0% (169 Bytes)

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


History
2022-04-04 23:39:31 UTC

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

2022-04-04 23:39:31 UTC

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

2022-04-05 04:22:00 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-04-05 04:22:01 UTC

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

2022-04-05 04:22:02 UTC

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

2022-04-05 04:32:55 UTC

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

2022-04-05 04:32:56 UTC

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

2022-04-05 04:32:57 UTC

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

2022-04-05 04:36: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 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 04:36:08 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-04-05 04:36:08 UTC

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

2022-04-05 04:36:09 UTC

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

2022-04-05 04:36:10 UTC

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

2022-04-05 04:36:11 UTC

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

2022-04-05 04:36:13 UTC

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

2022-04-05 04:36:13 UTC

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

2022-04-05 04:36:14 UTC

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

2022-04-05 04:36:15 UTC

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

2022-04-05 04:36:16 UTC

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

Details
Created

2022-04-05 10:39:11 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

11

PG_SHA256

c8f58e8ebd4f4567f4f9ba1032eb3e99e0251d87cbe3e564b485590e37a879e3

PG_VERSION

11.15


Layers

[#000] sha256:1877acf2d48ed8bcb5bd9756a95aca0c077457be7cf4fcef25807f4e9be88db1 - 3.33% (2.68 MB)

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

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

[#003] sha256:1bf9883e0e022e9ba47d0aea3a79a4b11984d741d69886e00633e7555b98a42b - 96.65% (77.8 MB)

[#004] sha256:035e1c3672ccada8506140491fe258020448ed08de73684a3cf74717348c34c7 - 0.01% (7.81 KB)

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

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

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


History
2022-04-05 00:23:30 UTC

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

2022-04-05 00:23:32 UTC

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

2022-04-05 10:15:26 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-04-05 10:15:31 UTC

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

2022-04-05 10:15:41 UTC

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

2022-04-05 10:33:28 UTC

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

2022-04-05 10:33:31 UTC

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

2022-04-05 10:33:33 UTC

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

2022-04-05 10:38:10 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 10:38: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-04-05 10:38:36 UTC

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

2022-04-05 10:38:39 UTC

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

2022-04-05 10:38:50 UTC

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

2022-04-05 10:38:57 UTC

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

2022-04-05 10:38:59 UTC

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

2022-04-05 10:39:01 UTC

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

2022-04-05 10:39:05 UTC

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

2022-04-05 10:39:08 UTC

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

2022-04-05 10:39:11 UTC

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

Details
Created

2022-04-05 07:08:00 UTC

Size

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

11

PG_SHA256

c8f58e8ebd4f4567f4f9ba1032eb3e99e0251d87cbe3e564b485590e37a879e3

PG_VERSION

11.15


Layers

[#000] sha256:a27b630f446c3da376a30cf610e4bfa6847f8b87c83702c29e72b986f4e52d28 - 3.24% (2.48 MB)

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

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

[#003] sha256:1ab3ddcb5b4009346b4df43e90c65531f8118843560b68706a3895f776960c84 - 96.74% (74 MB)

[#004] sha256:4ac1422ea1d037c9e471d2ee86e95d77a85648ecab5847e2b3d848738dcffa18 - 0.01% (7.8 KB)

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

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

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


History
2022-04-04 23:41:39 UTC

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

2022-04-04 23:41:39 UTC

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

2022-04-05 06:55:28 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-04-05 06:55:28 UTC

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

2022-04-05 06:55:29 UTC

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

2022-04-05 07:05:19 UTC

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

2022-04-05 07:05:19 UTC

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

2022-04-05 07:05:19 UTC

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

2022-04-05 07:07:55 UTC

/bin/sh -c set -eux; wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2"; echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c -; mkdir -p /usr/src/postgresql; tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 ; rm postgresql.tar.bz2; apk add --no-cache --virtual .build-deps 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2022-04-05 07:07: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-04-05 07:07:59 UTC

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

2022-04-05 07:07:59 UTC

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

2022-04-05 07:08:00 UTC

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

2022-04-05 07:08:00 UTC

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

2022-04-05 07:08:00 UTC

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

2022-04-05 07:08:00 UTC

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

2022-04-05 07:08:00 UTC

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

2022-04-05 07:08:00 UTC

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

2022-04-05 07:08:00 UTC

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