docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.5.19-alpine
sha256:90eb87dd163ab9098538e7e868db5d48ea3c01493e887ab58720c5d2a44263c9
2019-10-22 01:12:19 UTC
14.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
PG_VERSION9.5.19
[#000] sha256:f913bd05bf684aaa4bc173d73cfbb58abb45587962d74f0aa71df36b6b489def - 18.79% (2.66 MB)
[#001] sha256:f34d8b3207fc27ae3e199da966892810baab60a35d1f13fb8caba72c79d10107 - 0.0% (147 Bytes)
[#002] sha256:700ba88931304f86992d61359c40d19c27f8c56955a3a0a52598ca6a55ea7cdc - 0.0% (115 Bytes)
[#003] sha256:0ef7ae0e380bda7cdbcece2bcb5316ec5f9eae6597ca4693abab84c655f40279 - 81.14% (11.5 MB)
[#004] sha256:4dc1660682cc902389033812db889850058ad4c08094780bbb7f843d3bf8e552 - 0.05% (6.67 KB)
[#005] sha256:6988ea79c7ae14f7f663dcde60a9566824a0ed69bb7134b81e72877f11e0055b - 0.0% (130 Bytes)
[#006] sha256:1434d49a5ee27e8bf186389e37f5547605ba8436d2ca7f61ea850ee61bab7666 - 0.0% (163 Bytes)
[#007] sha256:d3ab8cd5b281a7bedf61bf39d8b62c3df6e150616247c1d33854926f711fe968 - 0.02% (2.31 KB)
[#008] sha256:ba45e612346af3129fbb81a0d9df4fdcd702a16bff8a6282d05c8ca0c3644d02 - 0.0% (121 Bytes)
/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:06:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-10-22 01:06:28 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.19
2019-10-22 01:06:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
2019-10-22 01:12:11 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:12:13 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-22 01:12:14 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:12:15 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-22 01:12:16 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-22 01:12:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-22 01:12:16 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-10-22 01:12:18 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-22 01:12:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-22 01:12:18 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-22 01:12:19 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:c7132a7ed9f4861cf3c83f10c73111ebf0023ea149f7f7dea9d5c3c7ad08d627
2019-10-21 19:41:43 UTC
13.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
PG_VERSION9.5.19
[#000] sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17 - 19.56% (2.66 MB)
[#001] sha256:66ddea140797e8e48dae29e9da5a02b5d5195ebd73c51f38e07d3ead76b85b1b - 0.0% (146 Bytes)
[#002] sha256:977cf4e465c190a6a927cb72015e4dd220ef24b295e54a2604c4a6264d77923e - 0.0% (115 Bytes)
[#003] sha256:82356f92ff0180877b8d6f8aa637f8293824b1c05561219b1693e2c876fde3df - 80.37% (10.9 MB)
[#004] sha256:a06732f8a80365732cec7ed96f0d5cff7a32d328347535bfe5d2b1978b6ef677 - 0.05% (6.67 KB)
[#005] sha256:d08d0a5659d807102effbec80e805cf75d4119f74c2d7b31301a3d25f258995d - 0.0% (129 Bytes)
[#006] sha256:c6213591c040f0f55c47b24f28bb2b3c7401aa8ab57b37fcee07e1ab418bec9f - 0.0% (163 Bytes)
[#007] sha256:3d19a7cee1914801043a41c88a86fb6f1a3cdbf7d97b795480f55a341a017cb7 - 0.02% (2.31 KB)
[#008] sha256:6be6b36bf504347ff9fef0d39a1c78688c870f97dde6989c7988e95ec47bc2d3 - 0.0% (120 Bytes)
/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:37:37 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-10-21 19:37:37 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.19
2019-10-21 19:37:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
2019-10-21 19:41:39 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:41:40 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 19:41:41 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:41:41 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 19:41:42 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 19:41:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 19:41:42 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-10-21 19:41:43 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 19:41:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 19:41:43 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 19:41:43 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:b73efa1c1ea07c095b1061d1e43e7929319713bc37326e542d244e178e7861de
2019-10-21 20:18:14 UTC
13 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
PG_VERSION9.5.19
[#000] sha256:ecf664be551d26dcd221b7387283cdcc54f46c6789700d037fa3cd0c297f8645 - 18.89% (2.45 MB)
[#001] sha256:1c3a2c6607481af9f1a74a1b89a22d1087da918470ff808731d4fbfd005f801f - 0.0% (177 Bytes)
[#002] sha256:2bb4257cc84e6986e3719d8249c1fecc0e0da0f4e96784330d2078218b6c0b12 - 0.0% (149 Bytes)
[#003] sha256:f662c82c122fcb34bb9b511f5df2b4d6515e03ed56b9e5a09fe5fde68fda210a - 81.03% (10.5 MB)
[#004] sha256:12e11db8dad7dd884105d3601a88142166077678278de1cbd3e21c2f1269e3e0 - 0.05% (6.67 KB)
[#005] sha256:f618a665988bb38b37baae8e9fb761e37769c096f400803c2e3eaf0849fc9558 - 0.0% (161 Bytes)
[#006] sha256:84ec676893729a839b6f48c1b575ad038a8f4a71064b4b397041e82672ab2358 - 0.0% (193 Bytes)
[#007] sha256:55a92c1401d38f404defaa49a97d3e2a978c59a0562bc4dbfa3f3339156cd4e0 - 0.02% (2.32 KB)
[#008] sha256:1961455d48c1fc8064179dc76a0941cd9f70c76c10999e06e772e60fce3cbf2d - 0.0% (121 Bytes)
/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:16:20 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-10-21 20:16:21 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.19
2019-10-21 20:16:21 UTC/bin/sh -c #(nop) ENV PG_SHA256=960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
2019-10-21 20:18:01 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:18:05 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 20:18:07 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:18:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 20:18:09 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 20:18:10 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 20:18:11 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-10-21 20:18:12 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 20:18:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 20:18:13 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 20:18:14 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:6dcae66dc6022185a82d78618de9d408b5fe3a23f96abbfe314ce1fb4d4e9ade
2019-10-21 20:11:20 UTC
12.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
PG_VERSION9.5.19
[#000] sha256:99fc70ac0b64db67086f98ceb3942600816eed98046abd6be5ad66f4614a9ca2 - 18.59% (2.27 MB)
[#001] sha256:fb22b4c6187d175999b9c008216c137bfb1e8528c82fc17ec688009bde59cf50 - 0.0% (177 Bytes)
[#002] sha256:55b6102169845d566d815df5b8e8f7c9fe307fd0d99ec3216e91d74e6d41d768 - 0.0% (149 Bytes)
[#003] sha256:e9907d1bb325d61fdc3ab0f0cb89fd467e43a2e94582615d53a69be607ab456b - 81.33% (9.92 MB)
[#004] sha256:56db6d6f636f96df365d1a32da830338d8791fd5e3a812d202f93a4985349066 - 0.05% (6.67 KB)
[#005] sha256:1e9b396d582596eafa45e25e44aca14a9a91e48caa02821fed1e9a978205da86 - 0.0% (161 Bytes)
[#006] sha256:189f863d9d600003d8a39c7b7d5adb15ce129a53d536e1366237808059705d14 - 0.0% (195 Bytes)
[#007] sha256:9a7a0c18a5065f1749f5461d4c9ecede8d9412dc380e8583004bba6acc056c52 - 0.02% (2.32 KB)
[#008] sha256:5e365a0028e11c80e176204e3c3f1f2c3865ac113a4df302f16b19b79682225c - 0.0% (121 Bytes)
/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:09:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-10-21 20:09:17 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.19
2019-10-21 20:09:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
2019-10-21 20:11:04 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:11:08 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 20:11:10 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:11:11 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 20:11:13 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 20:11:14 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 20:11:15 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-10-21 20:11:17 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 20:11:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 20:11:19 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 20:11:20 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:d7c812cdd7bf75adb90220039c8f7a0588277a2dc07c91a7439c9f04dc62a7ee
2019-10-21 21:13:05 UTC
13.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
PG_VERSION9.5.19
[#000] sha256:8bfa913040406727f36faa9b69d0b96e071b13792a83ad69c19389031a9f3797 - 19.28% (2.59 MB)
[#001] sha256:467d2d54c3c5e6d2eff91e08188c0f252813fc1ffb01dad13463d8bd5d62de5f - 0.0% (177 Bytes)
[#002] sha256:d08515ae3dcc735db900748e208be89ac22fce764201f7178be2ebdbb17faaf9 - 0.0% (149 Bytes)
[#003] sha256:17926f69d61cc52ae8b30104c235dc3e75673c4c263ae0f10395a99fe6be655d - 80.65% (10.8 MB)
[#004] sha256:3a5593ead0e3b621564ca027c37c681ff9bf652bb524cda70547f04e0c198fb4 - 0.05% (6.67 KB)
[#005] sha256:6c52c166878cd5560c1c9a84dec13bb6544c4d353a7cf535e06173394eb17bd3 - 0.0% (160 Bytes)
[#006] sha256:05530edd9dc8457ee8d197fd22991c6fb30375d1b9b0a00225c6ff6be1e4db9f - 0.0% (193 Bytes)
[#007] sha256:a28d8ccf5cabcb5553c3704d4a53ea6972813bb3907c43c6b3b2e6cc81438be8 - 0.02% (2.31 KB)
[#008] sha256:cb797d37c71bd31104088607b73e2acd2bdafbd0f732f1cc99a3e14d84a95eb6 - 0.0% (121 Bytes)
/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:10:31 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-10-21 21:10:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.19
2019-10-21 21:10:33 UTC/bin/sh -c #(nop) ENV PG_SHA256=960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
2019-10-21 21:12:49 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:12:52 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 21:12:54 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:12:55 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 21:12:57 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 21:12:58 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 21:12:59 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-10-21 21:13:03 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 21:13:04 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 21:13:05 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 21:13:05 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:7d9bea87c761825a00cc625e6a7ef59eccbc8a44c4deb3753c6108e2fed73233
2019-10-21 21:03:09 UTC
14.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
PG_VERSION9.5.19
[#000] sha256:cd18d16ea896a0f0eb99be52a9722ffae9a5ac35cf28cb8b96f589352f8e71d6 - 18.29% (2.68 MB)
[#001] sha256:cd9bb1fde970205c39a65b86144e6c7133ee84a91cabca1e330d5bc7f39bc506 - 0.0% (177 Bytes)
[#002] sha256:c7f69cce08dd71f33d5b41fcb1c3f43cfc66013d7dafd611ee534bacf4c5274e - 0.0% (149 Bytes)
[#003] sha256:a2dfe4f4586371760ad4ed6151117355dce2fd91d35c31d7dbc9b41ab544a70c - 81.64% (12 MB)
[#004] sha256:0ee121057980d7c77c31c1673d0b689911018d9a6522196a8875c546c0eb0f73 - 0.04% (6.67 KB)
[#005] sha256:bfa1f8131e882da3a75b430849c5337c58c1041124021be24839ad335283a466 - 0.0% (161 Bytes)
[#006] sha256:f188a1c3a57d7e0cd971b0fede9b6adbee541259ed2ba91d35223ff2729c6eab - 0.0% (195 Bytes)
[#007] sha256:42a850712c35e5c1e04e6f0c63ad64b3fd2df59de385e7da72c46dc45e640079 - 0.02% (2.32 KB)
[#008] sha256:cbd59e92109607c844623c8aba2bc2725c7a6c37059c5a725c96989b813163d5 - 0.0% (121 Bytes)
/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 20:59:59 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-10-21 21:00:02 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.19
2019-10-21 21:00:05 UTC/bin/sh -c #(nop) ENV PG_SHA256=960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
2019-10-21 21:02:28 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:02:32 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 21:02:37 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:02:39 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 21:02:45 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 21:02:47 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 21:02:48 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-10-21 21:02:55 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 21:02:59 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 21:03:05 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 21:03:09 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:ba8282756a3fb0d6288cbafd7dfba6a3764b95e66082ca96fe75647d36d6dc62
2019-10-21 18:51:43 UTC
13.3 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
PG_VERSION9.5.19
[#000] sha256:fb7172052a60e640810f01efff381654bf9ed44082461455cfcc6306d192d541 - 18.5% (2.45 MB)
[#001] sha256:7a57893e59b50dc5ec739cab67cd43898391892084e514bc0540d0e3a13439e4 - 0.0% (147 Bytes)
[#002] sha256:03459d5bf6b37edba4d4dec8803b2e7bfe0aecd2acbd7b275470110f6212d4de - 0.0% (115 Bytes)
[#003] sha256:1900d504cf6e7c4a0cfced01da92b100d57197aa18214bea150f29da552e369c - 81.42% (10.8 MB)
[#004] sha256:3e130256591e2c680a57abb0a77c7480da47d6f09717464dbb5d32ad0a0afa21 - 0.05% (6.67 KB)
[#005] sha256:affccc5f4781887beb9e7414294096f028aa160f9332ca127d42fcff112fd03e - 0.0% (129 Bytes)
[#006] sha256:12d8e48c4da389f7f598dd4d88541506f9e20e20aeff72ae3924fbbe15c1facf - 0.0% (162 Bytes)
[#007] sha256:fdbb81a1c25cb317d66bd36f43d67c39c7a77de828326ef8de1df7dfbbf70b09 - 0.02% (2.32 KB)
[#008] sha256:7b82bf2238daaa4509d3fda547290230ddc113462b5322676109a706244a26c2 - 0.0% (121 Bytes)
/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:48:49 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2019-10-21 18:48:49 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.19
2019-10-21 18:48:49 UTC/bin/sh -c #(nop) ENV PG_SHA256=960caa26612bca8a3791d1c0bdc5c6d24b3d15841becb617470424edbc5e1bb3
2019-10-21 18:51:36 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:51:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 18:51:38 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:51:39 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 18:51:40 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 18:51:40 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 18:51:40 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-10-21 18:51:42 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 18:51:42 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 18:51:42 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 18:51:43 UTC/bin/sh -c #(nop) CMD ["postgres"]