2019-10-22 00:59:44 UTC
27.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA256ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
PG_VERSION10.10
[#000] sha256:f913bd05bf684aaa4bc173d73cfbb58abb45587962d74f0aa71df36b6b489def - 9.65% (2.66 MB)
[#001] sha256:f34d8b3207fc27ae3e199da966892810baab60a35d1f13fb8caba72c79d10107 - 0.0% (147 Bytes)
[#002] sha256:700ba88931304f86992d61359c40d19c27f8c56955a3a0a52598ca6a55ea7cdc - 0.0% (115 Bytes)
[#003] sha256:3f02e757872685f2a716afa8e0210262e9a39e2175da352a724cb4da2b0c0044 - 90.32% (24.9 MB)
[#004] sha256:b6cbeaba75be7b06e3f7c9b30561ae8affce9a4d50c30b9c29bce54afac8eb43 - 0.03% (7.13 KB)
[#005] sha256:e7b6a29d0e362a2bb30c3c7c49404795505ead2540b6bd017a01adc5d5c2585d - 0.0% (129 Bytes)
[#006] sha256:7a40ad354eb85e988303a928ec8953f9f115920e13b5b84506a3aa99c7a5f565 - 0.0% (164 Bytes)
[#007] sha256:4313ce00e346475ae2584b974e2d18b5890b6126fa4ced285f8c33a48d631750 - 0.01% (2.32 KB)
[#008] sha256:0d24eea2756dd9396b12ea4831e4c3bf3a7a64e601ba01e721679a0ea39a8c70 - 0.0% (118 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 00:53:12 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-10-22 00:53:12 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.10
2019-10-22 00:53:12 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
2019-10-22 00:59:37 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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 00:59:38 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-22 00:59:40 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-10-22 00:59:40 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-22 00:59:41 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-22 00:59:41 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-22 00:59:42 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-10-22 00:59:43 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-22 00:59:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-22 00:59:44 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-22 00:59:44 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-10-21 19:32:14 UTC
26.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA256ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
PG_VERSION10.10
[#000] sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17 - 9.95% (2.66 MB)
[#001] sha256:66ddea140797e8e48dae29e9da5a02b5d5195ebd73c51f38e07d3ead76b85b1b - 0.0% (146 Bytes)
[#002] sha256:977cf4e465c190a6a927cb72015e4dd220ef24b295e54a2604c4a6264d77923e - 0.0% (115 Bytes)
[#003] sha256:72ad2d2b7781d337e10dc0eba5eab148572361d3c0a8771967d478250ce45fde - 90.02% (24.1 MB)
[#004] sha256:1c82af4ad7ded5cff5b91784bb8dcd9ae2488eb1c9e3c4f0aa0b9d693417041f - 0.03% (7.13 KB)
[#005] sha256:e09811cc5c811f2c90100dab0834f9991c1d6965d8790af9f465f44967d50d85 - 0.0% (129 Bytes)
[#006] sha256:558e04e02671cadc3ac91310a3d55dcca4a4f0f345df1a558a468619b961427d - 0.0% (163 Bytes)
[#007] sha256:07e108c13e64eb13216d95c7d71df08d86a3aea31e64f74113b0b231d67f0782 - 0.01% (2.32 KB)
[#008] sha256:b06067a93980edc11589f4f3e40acdb59ce9d37c17a0527c941a56b4da2ac4b8 - 0.0% (121 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:27:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-10-21 19:27:41 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.10
2019-10-21 19:27:41 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
2019-10-21 19:32:10 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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:32:11 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 19:32:11 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:32:12 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 19:32:12 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 19:32:13 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 19:32:13 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-10-21 19:32:14 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 19:32:14 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 19:32:14 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 19:32:14 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-10-21 20:13:45 UTC
25.8 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA256ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
PG_VERSION10.10
[#000] sha256:ecf664be551d26dcd221b7387283cdcc54f46c6789700d037fa3cd0c297f8645 - 9.5% (2.45 MB)
[#001] sha256:1c3a2c6607481af9f1a74a1b89a22d1087da918470ff808731d4fbfd005f801f - 0.0% (177 Bytes)
[#002] sha256:2bb4257cc84e6986e3719d8249c1fecc0e0da0f4e96784330d2078218b6c0b12 - 0.0% (149 Bytes)
[#003] sha256:3a7fbed0e8d8688fbfe1ea116d21f57f5e577f0cdf077e0400d436cbc631c3b7 - 90.47% (23.4 MB)
[#004] sha256:a8567d79a1680c59e33c09077d9d0b41ddd822e86157d9df2e228cf0a0958bc0 - 0.03% (7.13 KB)
[#005] sha256:6e5b1fbb4f5d46487579dccef9622cfa6665f3148473158c3f354563f84a3068 - 0.0% (161 Bytes)
[#006] sha256:efd3f3ba1cd93ecde1bb49cfcdd4c20ea59a35f99145300ff4ef4780e3b6ba56 - 0.0% (193 Bytes)
[#007] sha256:ec657eaa9c412d50206db80184381a8eed2cf91f69d8ea04b20a3a0ade2a64d3 - 0.01% (2.32 KB)
[#008] sha256:858d1b7c9798bd877c974ca0b1c3308a8f6ffc4e7e75c143a6c739454232a5dc - 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:11:32 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-10-21 20:11:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.10
2019-10-21 20:11:33 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
2019-10-21 20:13:26 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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:28 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:31 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:32 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 20:13:34 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 20:13:36 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 20:13:37 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-10-21 20:13:42 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 20:13:43 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 20:13:44 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 20:13:45 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-10-21 20:06:40 UTC
24.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA256ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
PG_VERSION10.10
[#000] sha256:99fc70ac0b64db67086f98ceb3942600816eed98046abd6be5ad66f4614a9ca2 - 9.13% (2.27 MB)
[#001] sha256:fb22b4c6187d175999b9c008216c137bfb1e8528c82fc17ec688009bde59cf50 - 0.0% (177 Bytes)
[#002] sha256:55b6102169845d566d815df5b8e8f7c9fe307fd0d99ec3216e91d74e6d41d768 - 0.0% (149 Bytes)
[#003] sha256:81a5cacc0b6550203f9dcfdf822fb5eeb0702c153e63612c5547648bcaa06a96 - 90.83% (22.6 MB)
[#004] sha256:78a0d34dcbc7a05ffe1a33dedf9defef0bc3d25cce83420436c1963086b17fa8 - 0.03% (7.13 KB)
[#005] sha256:7488bc10e24d8b97b8cab0ea387cb3bf2f1e83f7fa8338a6175c6f2fe0ba31b2 - 0.0% (162 Bytes)
[#006] sha256:d47862de59e34cf838fa8c46ce123f46aa4cd34bfdaf14c7d50dee51d99a4282 - 0.0% (194 Bytes)
[#007] sha256:736a39394b8629f7f1edf3339b9f7fad63219c0b55478beaaf10c48024e40c93 - 0.01% (2.31 KB)
[#008] sha256:d0556ebf9e6754034623059ea622d994a3fd53c65986f01de99676728317bc5e - 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:04:32 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-10-21 20:04:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.10
2019-10-21 20:04:33 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
2019-10-21 20:06:25 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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:06: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:06: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:06:30 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 20:06:32 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 20:06:33 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 20:06:34 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-10-21 20:06:36 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 20:06:37 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 20:06:38 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 20:06:40 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-10-21 21:07:16 UTC
26.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA256ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
PG_VERSION10.10
[#000] sha256:8bfa913040406727f36faa9b69d0b96e071b13792a83ad69c19389031a9f3797 - 9.74% (2.59 MB)
[#001] sha256:467d2d54c3c5e6d2eff91e08188c0f252813fc1ffb01dad13463d8bd5d62de5f - 0.0% (177 Bytes)
[#002] sha256:d08515ae3dcc735db900748e208be89ac22fce764201f7178be2ebdbb17faaf9 - 0.0% (149 Bytes)
[#003] sha256:37bed8dc4667c33111325f486a99373df4971fe044b5b9cb6dea3c7fd2e05dfc - 90.22% (24 MB)
[#004] sha256:f292369858aa86e710f1529195924fe64fb6c0f4b0f3337129f94eed42c44d0b - 0.03% (7.13 KB)
[#005] sha256:c48cfd4eea7ab741a9f6c491a62b3743b2b13639473d3864f5f88f81c014b197 - 0.0% (163 Bytes)
[#006] sha256:583b34e767f53c40abb58ce4ffe10ec4195ae772f41cc5151d2b932f14162c1a - 0.0% (194 Bytes)
[#007] sha256:0d8dfe558e7209d45d61efaaeefc02ca4a226a10687a4f80920a91f18e4b00c2 - 0.01% (2.31 KB)
[#008] sha256:ee08c98133f60cdc7aec7f2e8186f9eb2e3894185654b0e15e36e7193dcd0c8d - 0.0% (117 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:04:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-10-21 21:04:19 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.10
2019-10-21 21:04:21 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
2019-10-21 21:07: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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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:07:05 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 21:07: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 21:07:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 21:07:09 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 21:07:10 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 21:07:11 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-10-21 21:07:13 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 21:07:14 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 21:07:15 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 21:07:16 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-10-21 20:55:35 UTC
28 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA256ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
PG_VERSION10.10
[#000] sha256:cd18d16ea896a0f0eb99be52a9722ffae9a5ac35cf28cb8b96f589352f8e71d6 - 9.58% (2.68 MB)
[#001] sha256:cd9bb1fde970205c39a65b86144e6c7133ee84a91cabca1e330d5bc7f39bc506 - 0.0% (177 Bytes)
[#002] sha256:c7f69cce08dd71f33d5b41fcb1c3f43cfc66013d7dafd611ee534bacf4c5274e - 0.0% (149 Bytes)
[#003] sha256:bfba4d0d69c169ddbcdb4dfe38526034891110d96a346f4048bc87753b663ca0 - 90.38% (25.3 MB)
[#004] sha256:e01b126937cf9a4662cb9eafae64784d74a9a744c9bb2d7e39c26603322d4d78 - 0.02% (7.13 KB)
[#005] sha256:3e471d2af732fa5c48bd74442f78765e6fa08d5197b525a09419fa783c55a216 - 0.0% (161 Bytes)
[#006] sha256:ee3140d61f59b880c2143cdb43948d3fde1eb097bdd02ebc2a51579df2d9e9fb - 0.0% (194 Bytes)
[#007] sha256:b42f48844372db71ab4fbb43e730c554f6f912d7e6fa0d9c6f26765a8bd88868 - 0.01% (2.32 KB)
[#008] sha256:22b15f61db36a29ee9dfed6cd574a55cf650d07d899f4c87aff91b9334228e8b - 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:51:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-10-21 20:51:51 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.10
2019-10-21 20:51:55 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
2019-10-21 20:54:47 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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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:54: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:55:02 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:55:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 20:55:11 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 20:55:15 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 20:55:18 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-10-21 20:55:24 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 20:55:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 20:55:31 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 20:55:35 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-10-21 18:44:32 UTC
26.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR10
PG_SHA256ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
PG_VERSION10.10
[#000] sha256:fb7172052a60e640810f01efff381654bf9ed44082461455cfcc6306d192d541 - 9.25% (2.45 MB)
[#001] sha256:7a57893e59b50dc5ec739cab67cd43898391892084e514bc0540d0e3a13439e4 - 0.0% (147 Bytes)
[#002] sha256:03459d5bf6b37edba4d4dec8803b2e7bfe0aecd2acbd7b275470110f6212d4de - 0.0% (115 Bytes)
[#003] sha256:0a882a8dcc73af9f3c0bcbe0c341ee56b62826bb08ddc3b1fa3681aae36d2089 - 90.72% (24.1 MB)
[#004] sha256:9b43091e8c8f4c9ba1ee395b9c878d89d6820560f6e71c4507508469945f3534 - 0.03% (7.13 KB)
[#005] sha256:97d6bbdfa8092e25893626e7517d9a5c55f20e0d2f12d1e6edce8acc787be9c3 - 0.0% (129 Bytes)
[#006] sha256:1b90d43f608d3a1e31a39ae5a27b9a2d28e7017817d503db40194b815b48fa9e - 0.0% (163 Bytes)
[#007] sha256:33a290f81698b765a52b8aa6074bafc8ffd41139683a5f0144d3917d412ae788 - 0.01% (2.31 KB)
[#008] sha256:e50a03cb2a7e434ec8a334ebfbf9eabb298a0bf99106114c7ca3cfd567bf78ed - 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:40:56 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-10-21 18:40:57 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.10
2019-10-21 18:40:57 UTC/bin/sh -c #(nop) ENV PG_SHA256=ad4f9b8575f98ed6091bf9bb2cb16f0e52795a5f66546c1f499ca5c69b21f253
2019-10-21 18:44: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 icu-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt --with-icu && 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:44:24 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-10-21 18:44:26 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:44:26 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-10-21 18:44:28 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-10-21 18:44:28 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-10-21 18:44:29 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-10-21 18:44:30 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-10-21 18:44:31 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-10-21 18:44:31 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-10-21 18:44:32 UTC/bin/sh -c #(nop) CMD ["postgres"]