Tag

library/postgres:9.4.24-alpine
Content Digest: sha256:3a7ee010a7f44a45c554c2f6c076ea4bf79fc330b8d8dac46f1c512334165924
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.4.24-alpine


Manifests
Details
Content Digest

sha256:753b46495721a180d6f3462fd59f91574d861cce8af8bde8330904243dfb23e7

Created

2019-10-22 01:17:51 UTC

Size

14 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.4

PG_SHA256

52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429

PG_VERSION

9.4.24


Layers

[#000] sha256:f913bd05bf684aaa4bc173d73cfbb58abb45587962d74f0aa71df36b6b489def - 19.01% (2.66 MB)

[#001] sha256:f34d8b3207fc27ae3e199da966892810baab60a35d1f13fb8caba72c79d10107 - 0.0% (147 Bytes)

[#002] sha256:700ba88931304f86992d61359c40d19c27f8c56955a3a0a52598ca6a55ea7cdc - 0.0% (115 Bytes)

[#003] sha256:edad2855effcc294f55c527f86231b94b033aef0e3a61f4b9e0bf747ffc15128 - 80.93% (11.3 MB)

[#004] sha256:cc7d8c6378d2e44c6d92c72050fb7e3c98fb4ed74b3b9c06a7bc75c7dee66737 - 0.05% (6.53 KB)

[#005] sha256:65c222b79f1a88b8d082a35bd482c4de628c20c08e3d4fa8234b3cb761cc29e6 - 0.0% (130 Bytes)

[#006] sha256:326deaf836134a6dedf5405e6de49e2d7d209f9d48eb7a8fab2a935b7bab4d5d - 0.0% (164 Bytes)

[#007] sha256:3024eedd7ab5cfa9244b91c4d4a9e5080c83cc967a9cfe3a50ab2a4bdf8e765a - 0.02% (2.32 KB)

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


History
2019-10-21 16:46:04 UTC

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

2019-10-21 16:46:04 UTC

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

2019-10-22 00:38:40 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-10-22 00:38:40 UTC

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

2019-10-22 00:38:42 UTC

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

2019-10-22 01:12:36 UTC

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

2019-10-22 01:12:36 UTC

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

2019-10-22 01:12:36 UTC

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

2019-10-22 01:17:44 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-10-22 01:17:46 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-10-22 01:17:47 UTC

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

2019-10-22 01:17:47 UTC

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

2019-10-22 01:17:49 UTC

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

2019-10-22 01:17:49 UTC

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

2019-10-22 01:17:49 UTC

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

2019-10-22 01:17:50 UTC

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

2019-10-22 01:17:51 UTC

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

2019-10-22 01:17:51 UTC

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

2019-10-22 01:17:51 UTC

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

Details
Content Digest

sha256:e4b871fd6469f3380dedf7e8e10fa5ec8d49a27043e0a12076a33656a9c15422

Created

2019-10-21 19:45:48 UTC

Size

13.5 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.4

PG_SHA256

52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429

PG_VERSION

9.4.24


Layers

[#000] sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17 - 19.76% (2.66 MB)

[#001] sha256:66ddea140797e8e48dae29e9da5a02b5d5195ebd73c51f38e07d3ead76b85b1b - 0.0% (146 Bytes)

[#002] sha256:977cf4e465c190a6a927cb72015e4dd220ef24b295e54a2604c4a6264d77923e - 0.0% (115 Bytes)

[#003] sha256:faa8ac6c6ecc4977ba2739bc410cba3a97e77bc8a5e8a0ed80d280639c27e5a5 - 80.17% (10.8 MB)

[#004] sha256:abacaaaa67c7fb85fbd66dd78247dbd299b936dd7a4b806a638470a225c8df25 - 0.05% (6.53 KB)

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

[#006] sha256:6d143a49b07b5853e7bc19aa279c1306729113dd84afe12f7af2ab649ba4b2b4 - 0.0% (163 Bytes)

[#007] sha256:103dc74232fddd2a96dd664c86d2353e80ce3204ef025ac3b274dd2521b5d331 - 0.02% (2.32 KB)

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


History
2019-10-21 17:21:42 UTC

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

2019-10-21 17:21:42 UTC

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

2019-10-21 19:17:31 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-10-21 19:17:31 UTC

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

2019-10-21 19:17:33 UTC

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

2019-10-21 19:41:55 UTC

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

2019-10-21 19:41:56 UTC

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

2019-10-21 19:41:56 UTC

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

2019-10-21 19:45:41 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-10-21 19:45:42 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-10-21 19:45:44 UTC

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

2019-10-21 19:45:44 UTC

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

2019-10-21 19:45:45 UTC

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

2019-10-21 19:45:46 UTC

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

2019-10-21 19:45:46 UTC

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

2019-10-21 19:45:47 UTC

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

2019-10-21 19:45:48 UTC

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

2019-10-21 19:45:48 UTC

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

2019-10-21 19:45:48 UTC

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

Details
Content Digest

sha256:ddecbc62db7e2146f8062a96cfca05f2788b627adcd4b0ac6bde221e727b7741

Created

2019-10-21 20:20:11 UTC

Size

12.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.4

PG_SHA256

52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429

PG_VERSION

9.4.24


Layers

[#000] sha256:ecf664be551d26dcd221b7387283cdcc54f46c6789700d037fa3cd0c297f8645 - 19.09% (2.45 MB)

[#001] sha256:1c3a2c6607481af9f1a74a1b89a22d1087da918470ff808731d4fbfd005f801f - 0.0% (177 Bytes)

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

[#003] sha256:6388fb31399979ea58a8aa3afa1c1c346e27f32d6da9222ca0f73b5fb045ac3d - 80.84% (10.4 MB)

[#004] sha256:1084324a851a54800342dedec9b0c13eeeef971fc977a5f2f5d905d22a7ebc2a - 0.05% (6.53 KB)

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

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

[#007] sha256:274913ee6b4c2c608e87289d92916340ba0ac4086547e0cd439a458e61e0ee27 - 0.02% (2.32 KB)

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


History
2019-10-21 16:56:02 UTC

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

2019-10-21 16:56:04 UTC

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

2019-10-21 20:06:30 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-10-21 20:06:31 UTC

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

2019-10-21 20:06:33 UTC

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

2019-10-21 20:18:20 UTC

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

2019-10-21 20:18:21 UTC

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

2019-10-21 20:18:21 UTC

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

2019-10-21 20:19:55 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-10-21 20:19:57 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-10-21 20:19:59 UTC

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

2019-10-21 20:20:00 UTC

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

2019-10-21 20:20:03 UTC

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

2019-10-21 20:20:04 UTC

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

2019-10-21 20:20:04 UTC

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

2019-10-21 20:20:07 UTC

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

2019-10-21 20:20:08 UTC

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

2019-10-21 20:20:10 UTC

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

2019-10-21 20:20:11 UTC

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

Details
Content Digest

sha256:76dd953808edec5c851387d30ca7d47434287c53381d1b854422cb6382bc06d1

Created

2019-10-21 20:13:43 UTC

Size

12.1 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.4

PG_SHA256

52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429

PG_VERSION

9.4.24


Layers

[#000] sha256:99fc70ac0b64db67086f98ceb3942600816eed98046abd6be5ad66f4614a9ca2 - 18.76% (2.27 MB)

[#001] sha256:fb22b4c6187d175999b9c008216c137bfb1e8528c82fc17ec688009bde59cf50 - 0.0% (177 Bytes)

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

[#003] sha256:ce281d31072e7e8284c0a472ea47a4a4279f6eaac762d883748d62b39a6c9441 - 81.16% (9.81 MB)

[#004] sha256:e4d4484907ab25cef33117b475833ce3207121c936d24b0990ff9362cb8c4c4e - 0.05% (6.53 KB)

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

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

[#007] sha256:56f64d91d85a2f74e182d0832268af146cf041b2b698fcb39ce4dc04f7ced085 - 0.02% (2.32 KB)

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


History
2019-10-21 18:15:18 UTC

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

2019-10-21 18:15:31 UTC

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

2019-10-21 19:59:37 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-10-21 19:59:38 UTC

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

2019-10-21 19:59:40 UTC

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

2019-10-21 20:11:36 UTC

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

2019-10-21 20:11:37 UTC

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

2019-10-21 20:11:38 UTC

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

2019-10-21 20:13:23 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-10-21 20:13:27 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-10-21 20:13:29 UTC

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

2019-10-21 20:13:30 UTC

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

2019-10-21 20:13:33 UTC

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

2019-10-21 20:13:33 UTC

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

2019-10-21 20:13:35 UTC

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

2019-10-21 20:13:38 UTC

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

2019-10-21 20:13:41 UTC

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

2019-10-21 20:13:42 UTC

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

2019-10-21 20:13:43 UTC

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

Details
Content Digest

sha256:f656f333d509d306a04e9e6847cf8b45c13d89579924248c5cabadc659297e01

Created

2019-10-21 21:15:44 UTC

Size

13.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.4

PG_SHA256

52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429

PG_VERSION

9.4.24


Layers

[#000] sha256:8bfa913040406727f36faa9b69d0b96e071b13792a83ad69c19389031a9f3797 - 19.48% (2.59 MB)

[#001] sha256:467d2d54c3c5e6d2eff91e08188c0f252813fc1ffb01dad13463d8bd5d62de5f - 0.0% (177 Bytes)

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

[#003] sha256:750cb477af26c9c3d584091bfbdb7344c31be57abab9dc2dc3632fb344c26360 - 80.45% (10.7 MB)

[#004] sha256:579e0770c17263300ecdc9ab44d9157623ce75b83537c081a15d5da74c312d25 - 0.05% (6.53 KB)

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

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

[#007] sha256:a2a29b229533a13890d93e94e856355f770208a65afff926efd94876cb739ea5 - 0.02% (2.31 KB)

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


History
2019-10-21 18:07:03 UTC

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

2019-10-21 18:07:09 UTC

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

2019-10-21 20:57:48 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-10-21 20:57:49 UTC

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

2019-10-21 20:57:50 UTC

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

2019-10-21 21:13:22 UTC

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

2019-10-21 21:13:22 UTC

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

2019-10-21 21:13:23 UTC

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

2019-10-21 21:15:30 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-10-21 21:15:33 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-10-21 21:15:35 UTC

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

2019-10-21 21:15:36 UTC

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

2019-10-21 21:15:38 UTC

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

2019-10-21 21:15:39 UTC

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

2019-10-21 21:15:39 UTC

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

2019-10-21 21:15:41 UTC

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

2019-10-21 21:15:42 UTC

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

2019-10-21 21:15:43 UTC

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

2019-10-21 21:15:44 UTC

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

Details
Content Digest

sha256:8c2d267fc2e6b916fb57d766a3a24c09e60f73c1cd10c6255a094f788f17cd77

Created

2019-10-21 21:07:03 UTC

Size

14.5 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.4

PG_SHA256

52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429

PG_VERSION

9.4.24


Layers

[#000] sha256:cd18d16ea896a0f0eb99be52a9722ffae9a5ac35cf28cb8b96f589352f8e71d6 - 18.51% (2.68 MB)

[#001] sha256:cd9bb1fde970205c39a65b86144e6c7133ee84a91cabca1e330d5bc7f39bc506 - 0.0% (177 Bytes)

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

[#003] sha256:f0a645cf2011f55a0941648f482f0749e68e5d9a22748c1719aedcfb715f7d68 - 81.42% (11.8 MB)

[#004] sha256:2653126a1aca541d34da09925e7b32d61e136fd3e5a8fd8bb70c49bb00081a73 - 0.04% (6.53 KB)

[#005] sha256:02a356f8faa6eb0a232a8371d4a8ff352363755282d877723ff6bef235be5f17 - 0.0% (162 Bytes)

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

[#007] sha256:a012620c643964029c1418876f973ad3091b25e71c88132633b6b1d6c45fa5bd - 0.02% (2.31 KB)

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


History
2019-10-21 17:52:55 UTC

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

2019-10-21 17:53:00 UTC

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

2019-10-21 20:43:21 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-10-21 20:43:23 UTC

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

2019-10-21 20:43:28 UTC

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

2019-10-21 21:03:25 UTC

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

2019-10-21 21:03:27 UTC

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

2019-10-21 21:03:28 UTC

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

2019-10-21 21:06:15 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-10-21 21:06:22 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-10-21 21:06:28 UTC

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

2019-10-21 21:06:30 UTC

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

2019-10-21 21:06:38 UTC

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

2019-10-21 21:06:40 UTC

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

2019-10-21 21:06:41 UTC

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

2019-10-21 21:06:47 UTC

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

2019-10-21 21:06:54 UTC

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

2019-10-21 21:06:59 UTC

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

2019-10-21 21:07:03 UTC

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

Details
Content Digest

sha256:266e01f2c0de0db959121061a296af9660ddfaec4378a245ad812fca2dca9ee2

Created

2019-10-21 18:55:20 UTC

Size

13.1 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.4

PG_SHA256

52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429

PG_VERSION

9.4.24


Layers

[#000] sha256:fb7172052a60e640810f01efff381654bf9ed44082461455cfcc6306d192d541 - 18.69% (2.45 MB)

[#001] sha256:7a57893e59b50dc5ec739cab67cd43898391892084e514bc0540d0e3a13439e4 - 0.0% (147 Bytes)

[#002] sha256:03459d5bf6b37edba4d4dec8803b2e7bfe0aecd2acbd7b275470110f6212d4de - 0.0% (115 Bytes)

[#003] sha256:1fe0aafb432fcb7fc7869a91f3726b868a983ad465e3ff12f4823c76f06f4c0b - 81.23% (10.7 MB)

[#004] sha256:42ea12f2ab1fb8263f8dbaa36ebfbd1c57b052b4889b95c37d50959966c3bf5d - 0.05% (6.54 KB)

[#005] sha256:0c9b85af37e48101863ea9c124f648b5e713a281d3dd79f428687a338cd9185d - 0.0% (130 Bytes)

[#006] sha256:1cf5ea3025eba6d915aa31bfddd505f451bb6823c0e86b056f15d6f08b54fd36 - 0.0% (164 Bytes)

[#007] sha256:334f525102b8e47e0d8c49c4e175ecf7631cc482d54d5c07e6060b2ff42ff101 - 0.02% (2.31 KB)

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


History
2019-10-21 16:47:28 UTC

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

2019-10-21 16:47:29 UTC

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

2019-10-21 18:33:38 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-10-21 18:33:39 UTC

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

2019-10-21 18:33:40 UTC

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

2019-10-21 18:51:57 UTC

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

2019-10-21 18:51:58 UTC

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

2019-10-21 18:51:58 UTC

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

2019-10-21 18:55:12 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && 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 libc-dev libedit-dev libxml2-dev libxslt-dev linux-headers make openssl-dev perl-utils perl-ipc-run 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-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 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-10-21 18:55:13 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2019-10-21 18:55:15 UTC

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

2019-10-21 18:55:15 UTC

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

2019-10-21 18:55:17 UTC

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

2019-10-21 18:55:17 UTC

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

2019-10-21 18:55:17 UTC

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

2019-10-21 18:55:18 UTC

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

2019-10-21 18:55:19 UTC

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

2019-10-21 18:55:19 UTC

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

2019-10-21 18:55:20 UTC

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