Tag

library/postgres:9-alpine3.14
Content Digest: sha256:160d1f012b8e8f7cc063f10a01bf1c9c4ea07004a9183ae275a835ee3b7ee4fd
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9-alpine3.14


Manifests
Details
Content Digest

sha256:9bc2319a0f0a7a88b795ae0f8412d8dc81407127c79931a014f1d2278527e49a

Created

2021-11-16 02:21:25 UTC

Size

20.3 MB


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

9.6

PG_SHA256

aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace

PG_VERSION

9.6.24


Layers

[#000] sha256:5420e0d28c84ecb16748cb90cc6acf8e2a81dab10cb1f674f3eee8533e53c62a - 13.28% (2.7 MB)

[#001] sha256:a69c9882c88ce94760f0d36deed4d8f55228d1df726a3bc33021031f8922aa5a - 0.01% (1.25 KB)

[#002] sha256:2788bc110cff8f1594e3fabf8ae849a646240d7e3c7ce77b566583c4a66b5467 - 0.0% (148 Bytes)

[#003] sha256:22b6129dc16a61a97030cc2ab3cc14c6acd29d4be90baa07c2a927ed510f149e - 86.65% (17.6 MB)

[#004] sha256:f090105092f161af6c6b2948831ff3d93c66959ed2b78092accf7dd203d18659 - 0.04% (7.35 KB)

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

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

[#007] sha256:3b78d66f3ea854a3446396c0779a39e154d32d11e4e1f0d63a0db08519b6f91a - 0.02% (4.61 KB)

[#008] sha256:a1b13fc44fee7305910c60c1535a6ea89ef3f9b2d5f4ca2466e118c56f8ba608 - 0.0% (121 Bytes)


History
2021-11-12 16:38:42 UTC

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

2021-11-12 16:38:42 UTC

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

2021-11-12 23:55:01 UTC

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

2021-11-12 23:55:01 UTC

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

2021-11-12 23:55:02 UTC

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

2021-11-13 00:33:10 UTC

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

2021-11-13 00:33:11 UTC

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

2021-11-13 00:33:11 UTC

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

2021-11-16 02:21:20 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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 02:21:21 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

2021-11-16 02:21:22 UTC

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

2021-11-16 02:21:22 UTC

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

2021-11-16 02:21:23 UTC

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

2021-11-16 02:21:23 UTC

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

2021-11-16 02:21:23 UTC

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

2021-11-16 02:21:24 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-11-16 02:21:24 UTC

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

2021-11-16 02:21:24 UTC

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

2021-11-16 02:21:25 UTC

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

2021-11-16 02:21:25 UTC

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

Details
Content Digest

sha256:ea44badd1a0a2f2a1091b2200f5546126bd2a0f8892fd93bc01659ff074dcb68

Created

2021-11-16 01:53:49 UTC

Size

19.8 MB


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

9.6

PG_SHA256

aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace

PG_VERSION

9.6.24


Layers

[#000] sha256:97518928ae5f3d52d4164b314a7e73654eb686ecd8aafa0b79acd980773a740d - 13.6% (2.69 MB)

[#001] sha256:9f97b97dbe44d3d5922703b0d43a419416f14f7acfda692d113a7aa9b9721fe1 - 0.01% (1.25 KB)

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

[#003] sha256:584d24c470dc748ee307dcd8c5322772540f694e56c949e85c331086dafb3820 - 86.33% (17.1 MB)

[#004] sha256:4c57ebd54f163b79cdabd27c7afeb463c98893456e1e10b5377aa9a1b6490b56 - 0.04% (7.35 KB)

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

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

[#007] sha256:ab0b174bfc6a330a86ae570e3cdca2d6699e39fb9cdb76fa9298775382b00921 - 0.02% (4.61 KB)

[#008] sha256:8be129f6f19f0635802b88caa10ff7410c5e3e7d0714880d58c2d3f8b0cfba73 - 0.0% (121 Bytes)


History
2021-11-12 17:19:44 UTC

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

2021-11-12 17:19:45 UTC

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

2021-11-13 05:06:01 UTC

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

2021-11-13 05:06:01 UTC

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

2021-11-13 05:06:02 UTC

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

2021-11-13 05:38:17 UTC

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

2021-11-13 05:38:17 UTC

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

2021-11-13 05:38:18 UTC

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

2021-11-16 01:53: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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 01:53: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

2021-11-16 01:53:46 UTC

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

2021-11-16 01:53:46 UTC

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

2021-11-16 01:53:47 UTC

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

2021-11-16 01:53:47 UTC

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

2021-11-16 01:53:47 UTC

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

2021-11-16 01:53:48 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-11-16 01:53:48 UTC

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

2021-11-16 01:53:49 UTC

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

2021-11-16 01:53:49 UTC

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

2021-11-16 01:53:49 UTC

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

Details
Content Digest

sha256:6ca06ce5f57f147de562cbda6b434371ab60d50988a72c4b68e5a36a2ee076f6

Created

2021-11-16 02:21:54 UTC

Size

19.2 MB


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

9.6

PG_SHA256

aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace

PG_VERSION

9.6.24


Layers

[#000] sha256:56afcfda5d78cc243287acbaad250c5e8c0f47aae620dd7c51985b0d3c9b2728 - 13.08% (2.51 MB)

[#001] sha256:0306bf867c1af5e86348eac10e572e5bbf7b1df7161b3237e6dbf067420ba562 - 0.01% (1.25 KB)

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

[#003] sha256:4e4e022160aff6e8cefa3a8fa362b07880b204fb38448573bc956cf3ab7466c6 - 86.85% (16.7 MB)

[#004] sha256:24d65c5444493005bad9bcac19912e58dcf4779b9d944f8546b6479f2cba71f3 - 0.04% (7.35 KB)

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

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

[#007] sha256:f708e26bd451985224e903d5789731f267bf33f6d0026a7506be208b6b0b2453 - 0.02% (4.61 KB)

[#008] sha256:4591b3e713bffeca0083989ecdbc0ee2d3fb6e6c7731f97ce2e35172d0115f49 - 0.0% (118 Bytes)


History
2021-11-12 16:49:42 UTC

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

2021-11-12 16:49:44 UTC

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

2021-11-13 00:23:41 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

2021-11-13 00:23:42 UTC

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

2021-11-13 00:23:43 UTC

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

2021-11-13 00:48:54 UTC

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

2021-11-13 00:48:54 UTC

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

2021-11-13 00:48:55 UTC

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

2021-11-16 02:21:43 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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 02:21: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

2021-11-16 02:21:47 UTC

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

2021-11-16 02:21:48 UTC

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

2021-11-16 02:21:50 UTC

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

2021-11-16 02:21:50 UTC

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

2021-11-16 02:21:51 UTC

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

2021-11-16 02:21:52 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-11-16 02:21:53 UTC

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

2021-11-16 02:21:53 UTC

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

2021-11-16 02:21:54 UTC

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

2021-11-16 02:21:54 UTC

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

Details
Content Digest

sha256:fbd1fc6bf2e1486ed0ceccb8027583cadd790351e8144d01dd5a28732aab17cd

Created

2021-11-16 02:38:31 UTC

Size

18.2 MB


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

9.6

PG_SHA256

aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace

PG_VERSION

9.6.24


Layers

[#000] sha256:764d2e53e1a607f2d8261522185d5b9021ade3ec1a595664ee90308c00176899 - 12.79% (2.33 MB)

[#001] sha256:65aac23bae9dde4628b949f53b16460bf45bbe0cb93feb0ca4e699560ec405be - 0.01% (1.25 KB)

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

[#003] sha256:3ff311cfd5479af8c8a2bfbe650bae229ca4fa7ad4295f8d6e5efd9861b71f49 - 87.13% (15.8 MB)

[#004] sha256:703ab4e2c7ecef427a563e64951121524adae311b2321b428fc265a86ab078fe - 0.04% (7.35 KB)

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

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

[#007] sha256:62a4947bb4407fef3687747b9cd984d62faaaf1c5ab3a81218aa52678f446add - 0.02% (4.61 KB)

[#008] sha256:1ddc6767e4ed9de810c703b77834c666415a8d034f0fa1c00d9d9a44ecc2e92d - 0.0% (121 Bytes)


History
2021-11-12 16:57:35 UTC

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

2021-11-12 16:57:36 UTC

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

2021-11-12 20:25: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

2021-11-12 20:25:42 UTC

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

2021-11-12 20:25:44 UTC

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

2021-11-12 20:51:20 UTC

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

2021-11-12 20:51:20 UTC

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

2021-11-12 20:51:21 UTC

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

2021-11-16 02:38:22 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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 02:38:24 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

2021-11-16 02:38:25 UTC

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

2021-11-16 02:38:25 UTC

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

2021-11-16 02:38:27 UTC

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

2021-11-16 02:38:27 UTC

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

2021-11-16 02:38:28 UTC

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

2021-11-16 02:38:30 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-11-16 02:38:30 UTC

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

2021-11-16 02:38:30 UTC

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

2021-11-16 02:38:31 UTC

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

2021-11-16 02:38:31 UTC

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

Details
Content Digest

sha256:3d6bbce400c2ad0e149c03fbd5dda280a3e33ce545a6cbb7fec3b1d5a9745c14

Created

2021-11-16 02:14:42 UTC

Size

19.6 MB


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

9.6

PG_SHA256

aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace

PG_VERSION

9.6.24


Layers

[#000] sha256:be307f383ecc62b27a29b599c3fc9d3129693a798e7fcce614f09174cfe2d354 - 13.22% (2.59 MB)

[#001] sha256:736fbb41a17a3d331434d1ced1bbefaf60ce58df545c90a6d1dbfeec5eb9af41 - 0.01% (1.23 KB)

[#002] sha256:99566057aebae6d994d20c6ed9fa0b7e7cd103f58ddce64c9096b244ec9905a0 - 0.0% (115 Bytes)

[#003] sha256:6c1f5331cf5699762523e4ac7f33dd4f39047f5c0e139673c330258f692cbb1d - 86.71% (17 MB)

[#004] sha256:842720abdac87077aa2abef7968191ed4a17fdde4e94f6414f517bceff8f86ac - 0.04% (7.35 KB)

[#005] sha256:63f410f0b8de0ca5cff5735078c214d6bf1131d36f1ec07fe254bddfe3c09204 - 0.0% (128 Bytes)

[#006] sha256:0e61f165c4173875231bde0453898aa372cffcf2a68d44d2cc6f4ee2e88c7808 - 0.0% (173 Bytes)

[#007] sha256:cff5ad88b789fc28505e306e9438bc34d4f57c9559fb9328105fcf320adf8911 - 0.02% (4.61 KB)

[#008] sha256:d79c85a9f77f64f6311b4212235b0f7c565d77fd07b81bf4e592e5cf11939f1e - 0.0% (121 Bytes)


History
2021-11-12 16:39:58 UTC

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

2021-11-12 16:39:58 UTC

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

2021-11-12 23:41:51 UTC

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

2021-11-12 23:41:52 UTC

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

2021-11-12 23:41:53 UTC

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

2021-11-13 00:05:02 UTC

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

2021-11-13 00:05:03 UTC

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

2021-11-13 00:05:04 UTC

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

2021-11-16 02:14:31 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 make openldap-dev openssl-dev perl-utils perl-ipc-run perl-dev python3-dev tcl-dev util-linux-dev zlib-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 ; 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 ; apk del --no-network .build-deps; cd /; rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man ; postgres --version

2021-11-16 02:14:32 UTC

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

2021-11-16 02:14:33 UTC

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

2021-11-16 02:14:34 UTC

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

2021-11-16 02:14:35 UTC

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

2021-11-16 02:14:36 UTC

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

2021-11-16 02:14:38 UTC

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

2021-11-16 02:14:38 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-11-16 02:14:39 UTC

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

2021-11-16 02:14:40 UTC

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

2021-11-16 02:14:41 UTC

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

2021-11-16 02:14:42 UTC

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

Details
Content Digest

sha256:8eedfac4668540e54143093faf6c217ca614aaeef87488f8bd1cf67d96cfc7e5

Created

2021-11-16 05:37:49 UTC

Size

20.9 MB


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

9.6

PG_SHA256

aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace

PG_VERSION

9.6.24


Layers

[#000] sha256:72940440c1ab65eca4d38846164719ffde4b147543cc658d041407a925b13368 - 12.85% (2.69 MB)

[#001] sha256:e892d223635db5048d4e0f826cfa9094090c3aa12a15afc7fdd249d076ca3e80 - 0.01% (1.26 KB)

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

[#003] sha256:7ecd789f178e75cf5058bc122ffb0e69dc490f74a0563e748e2abdaddb71eab1 - 87.08% (18.2 MB)

[#004] sha256:0b9e65dc5bb843f8088ece00b4d99580a35ff856da4397df5124318973a2d43b - 0.03% (7.35 KB)

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

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

[#007] sha256:b72a903b664cf5b06e672ab559a646f0acaa5f5ba876f2fe1705d38cc4aec76e - 0.02% (4.61 KB)

[#008] sha256:fdada6d6993e602d811ebe55fc36499ba1856a11d30c27ae1dc8f6dda862d00d - 0.0% (121 Bytes)


History
2021-11-12 21:18:00 UTC

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

2021-11-12 21:18:01 UTC

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

2021-11-13 14:19:29 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

2021-11-13 14:19:31 UTC

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

2021-11-13 14:19:42 UTC

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

2021-11-13 14:49:11 UTC

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

2021-11-13 14:49:13 UTC

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

2021-11-13 14:49:16 UTC

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

2021-11-16 05:36:40 UTC

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

2021-11-16 05:36: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

2021-11-16 05:36:59 UTC

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

2021-11-16 05:37:02 UTC

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

2021-11-16 05:37:11 UTC

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

2021-11-16 05:37:18 UTC

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

2021-11-16 05:37:21 UTC

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

2021-11-16 05:37:32 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-11-16 05:37:37 UTC

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

2021-11-16 05:37:42 UTC

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

2021-11-16 05:37:46 UTC

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

2021-11-16 05:37:49 UTC

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

Details
Content Digest

sha256:e0f89b6109d4639b36aa36e4e62b312b25ec21d7b796abab89c868a4f542b3f6

Created

2021-11-16 02:00:44 UTC

Size

19.8 MB


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

9.6

PG_SHA256

aeb7a196be3ebed1a7476ef565f39722187c108dd47da7489be9c4fcae982ace

PG_VERSION

9.6.24


Layers

[#000] sha256:817a13b0e05928f7491adbf1d2cf261ec35079112247bd03469bbe31156aca7c - 12.57% (2.49 MB)

[#001] sha256:c11d0e178e11b961bdeb7fbf4c5d37bdf95bead1a94bf7cb11c22318da7b0408 - 0.01% (1.25 KB)

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

[#003] sha256:bc2b2094fe34d9fbb2598b50b65080b3c0135cd4c9e120ecde481ea595016648 - 87.36% (17.3 MB)

[#004] sha256:2e6c843a53017e8ad4cb75c4adcc2b439bb28bb0a6c3662cf5df8d67709a54ad - 0.04% (7.35 KB)

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

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

[#007] sha256:a10e95a6aa727b9fae97f7610127ae9e2bf1e48aa129ea78b42d16e2ef28445b - 0.02% (4.61 KB)

[#008] sha256:3f244a41025f0cebc65bdb486243ea24b40f287ddb15f152014355e9a77f6a69 - 0.0% (121 Bytes)


History
2021-11-12 16:41:35 UTC

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

2021-11-12 16:41:36 UTC

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

2021-11-12 19:02: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

2021-11-12 19:02:11 UTC

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

2021-11-12 19:02:12 UTC

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

2021-11-12 19:16:19 UTC

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

2021-11-12 19:16:19 UTC

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

2021-11-12 19:16:19 UTC

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

2021-11-16 02:00:41 UTC

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

2021-11-16 02:00:42 UTC

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

2021-11-16 02:00:42 UTC

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

2021-11-16 02:00:43 UTC

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

2021-11-16 02:00:43 UTC

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

2021-11-16 02:00:43 UTC

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

2021-11-16 02:00:43 UTC

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

2021-11-16 02:00:44 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2021-11-16 02:00:44 UTC

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

2021-11-16 02:00:44 UTC

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

2021-11-16 02:00:44 UTC

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

2021-11-16 02:00:44 UTC

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