2019-02-06 20:49:48 UTC
27.1 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_SHA25668a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
PG_VERSION10.6
[#000] sha256:bcb4f889a459d231e71d88c93174eec5edef928ab1e2481f8b0074076ee934a6 - 9.68% (2.62 MB)
[#001] sha256:e4099db9edcf638f20df22a899890483f7c152af59ca7a2de9c3b24c53c509e7 - 0.0% (176 Bytes)
[#002] sha256:28707ab16cad86cb30cd0ea91c02c4829fa45e96504435a6ddf9b80190e85967 - 0.0% (147 Bytes)
[#003] sha256:45b4647e7c0c0074efbf949cdd6efcdc19c730a1519caaafbc7fbc336c674369 - 0.0% (115 Bytes)
[#004] sha256:0731c435c1dbdb91b57451519313b372be380a3fcda752517e6bcd9190c04219 - 90.28% (24.5 MB)
[#005] sha256:eeac30d4b765ec9dfef0d1f899c703a7aee485c418b39d59708d7b0050222863 - 0.03% (7.1 KB)
[#006] sha256:53ae2e3ee0e4c1d3ebb16014c0e5eb068f62a6af7ce7e1f567d8c15a1d92a167 - 0.0% (128 Bytes)
[#007] sha256:6cfe18ebc357849d77b19b32f8788a6a0f768e4a057dda0d33fcb9c8b925cbb7 - 0.0% (171 Bytes)
[#008] sha256:3f68150df5611304ff165738b3a87697e76d70faa8f9923e640493d1fcfa22de - 0.01% (2.32 KB)
[#009] sha256:1d61c832da4220b88f2904baf4ff7ec7c1967db127a2101042a7bf1f53f8c517 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:738a04760a9f9a1cd919954db42a0da78c644e7024240160c54723bf1dd479e9 in /
2019-01-31 11:38:57 UTC/bin/sh -c #(nop) COPY file:a10c133d8d5e9af3a9a1610709d3ed2f85b1507f1ba5745ac12bb495974e3fe6 in /etc/localtime
2019-01-31 11:38:57 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-02-06 20:35:16 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-02-06 20:35:17 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-02-06 20:35:18 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-02-06 20:43:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-02-06 20:43:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.6
2019-02-06 20:43:18 UTC/bin/sh -c #(nop) ENV PG_SHA256=68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2019-02-06 20:49: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 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-02-06 20:49:42 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-02-06 20:49:44 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-02-06 20:49:44 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-02-06 20:49:45 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
2019-02-06 20:49:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-02-06 20:49:46 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-02-06 20:49:47 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-02-06 20:49:48 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-02-06 20:49:48 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-02-06 20:49:48 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-02-05 20:40:51 UTC
26.3 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_SHA25668a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
PG_VERSION10.6
[#000] sha256:6c40cc604d8e4c121adcb6b0bfe8bb038815c350980090e74aa5a6423f8f82c0 - 9.99% (2.63 MB)
[#001] sha256:3ea5fa93d0256a5c13fa2926f47a75d64ba34cc9f224ef3d9190d71d97e6f857 - 0.0% (149 Bytes)
[#002] sha256:146f5c88cacb6c9f29e44a0ebdf2dc77bfddd2fb1695a97bd73253795c69af19 - 0.0% (115 Bytes)
[#003] sha256:9fc5bfa5813cce9b7611af670621d375f6338834e139cae56f152758cce54b84 - 89.97% (23.7 MB)
[#004] sha256:99fdb8e79d3733fde76d777400c5d1b08e77df378849e2b14442aaa4cfc5c0c9 - 0.03% (7.1 KB)
[#005] sha256:d0ec5819b579c50e02eb698e965787285b066423618d00ceb203f7be4621cacb - 0.0% (128 Bytes)
[#006] sha256:4c673b06500050c390499140535b421028fceadec80851e2a755fb4e7e36d7cb - 0.0% (171 Bytes)
[#007] sha256:4436822af9f811a3f96175b08e072e13337cf5b9d1b2cf593c8aca821de040cf - 0.01% (2.31 KB)
[#008] sha256:733c47ccf44e927fd7db3e6d7c3d3fb95258e7653bc691637e320b69ffb9d116 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:2a1fc9351afe35698918545b2d466d9805c2e8afcec52f916785ee65bbafeced in /
2019-01-30 22:19:52 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-02-05 20:34:28 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-02-05 20:34:28 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-02-05 20:34:29 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-02-05 20:37:43 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-02-05 20:37:44 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.6
2019-02-05 20:37:44 UTC/bin/sh -c #(nop) ENV PG_SHA256=68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2019-02-05 20:40: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 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-02-05 20:40:48 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-02-05 20:40:48 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-02-05 20:40:49 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-02-05 20:40:49 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
2019-02-05 20:40:49 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-02-05 20:40:50 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-02-05 20:40:50 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-02-05 20:40:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-02-05 20:40:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-02-05 20:40:51 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-02-06 09:18:51 UTC
25.4 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_SHA25668a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
PG_VERSION10.6
[#000] sha256:05276f4299f299c4d5ca6776672dcf52f03189b7004e747fd1c2b759d9157831 - 9.53% (2.42 MB)
[#001] sha256:5657e63df53674891643732c236f7932524d1710ce42d916bb3c889a8652df67 - 0.0% (173 Bytes)
[#002] sha256:d8c77ba51beefa9a22abd4e2e35103135e2312602e42dd7042c890fbc49e72ca - 0.0% (180 Bytes)
[#003] sha256:f0a6f03aaddc3ca07e447cc3be860e209752e90c6fcfc21931029262a590853d - 0.0% (149 Bytes)
[#004] sha256:a725a763674ee25aa729bbf7562e6142beb0814395f4776ee448798f4894f970 - 90.43% (23 MB)
[#005] sha256:cb1dee36d2a4246e8ab8db6d9f13eef9353b599f0ef1e65e77b838625d3bab90 - 0.03% (7.1 KB)
[#006] sha256:9ba28d56cb6858f22b9cd4fa971b0270da9002d47614e3d0c35cd7362dfc40ed - 0.0% (162 Bytes)
[#007] sha256:0b6512e740ae4633030f0186bd2a8726b21d0b8f78a206c39dc71f94095675ba - 0.0% (201 Bytes)
[#008] sha256:170c9dda14f6744f245a6660423d481c57a8d6354bb179dcd5bc521dcdcc3a1a - 0.01% (2.31 KB)
[#009] sha256:aec4ce1638f50a8b2b2b6d526d88b33900bad424e9265e91c0191c9c00eccd8a - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:64d5aa5dc08c958468e7c857c35d32a3e87c88800152264432930898defa10c5 in /
2019-01-31 08:50:09 UTC/bin/sh -c #(nop) COPY file:a10c133d8d5e9af3a9a1610709d3ed2f85b1507f1ba5745ac12bb495974e3fe6 in /etc/localtime
2019-01-31 08:50:09 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-02-06 09:14:36 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-02-06 09:14:36 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-02-06 09:14:38 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-02-06 09:16:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-02-06 09:16:50 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.6
2019-02-06 09:16:51 UTC/bin/sh -c #(nop) ENV PG_SHA256=68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2019-02-06 09:18:43 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 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-02-06 09:18:45 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-02-06 09:18:47 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-02-06 09:18:47 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-02-06 09:18:48 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
2019-02-06 09:18:48 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-02-06 09:18:49 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-02-06 09:18:50 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-02-06 09:18:51 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-02-06 09:18:51 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-02-06 09:18:51 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-02-06 14:22:55 UTC
26.2 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_SHA25668a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
PG_VERSION10.6
[#000] sha256:ee02fa18913c824d1d1c9b680f1a43dad343b9d6c086a6bc62e3361c3d3a2d63 - 9.79% (2.56 MB)
[#001] sha256:afafa41235ea57b01b00eba47de1574777073a79c1d592c5709dfcbb3bd51f2a - 0.0% (176 Bytes)
[#002] sha256:338d24015a7dd33b1b119f1467592c48dd1b1fc3d0df59ccdf790a2fc1d42f57 - 0.0% (148 Bytes)
[#003] sha256:21cc1911cb0cdeea1899783fa2719e24568e11bdd550577ffe47fc42ce411940 - 0.0% (115 Bytes)
[#004] sha256:553ae7d8fc146714e176b8ce72f1749019576fd51cdd668b6e0ba97b1fc3ae68 - 90.17% (23.6 MB)
[#005] sha256:b5a4c4672cd83dc35aa40233edee75d3e634dc8306d0ddaae333b93267e21def - 0.03% (7.1 KB)
[#006] sha256:b118c615a631df22ff41ed87e2f76f643e7317db1d302160fa86f22a135e39c8 - 0.0% (128 Bytes)
[#007] sha256:4893e4c389077327bb1ef8b6296545f91a258f20877efd86e79a0b5c0062f1f1 - 0.0% (170 Bytes)
[#008] sha256:4ea49dbface7f57b6a577963258cbfdd6a789c0ee0b07d4f181dd9492396a8c9 - 0.01% (2.32 KB)
[#009] sha256:f887fb2c18f34561c229c0dd0dfec8639325e3aaaa229ca42fe67040e83c3649 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:3c5f57c6644886bbb8164b9aa4cd60e233be7da48b7194a04963a8e7de058e28 in /
2019-01-31 09:40:56 UTC/bin/sh -c #(nop) COPY file:a10c133d8d5e9af3a9a1610709d3ed2f85b1507f1ba5745ac12bb495974e3fe6 in /etc/localtime
2019-01-31 09:40:57 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-02-06 13:29:54 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-02-06 13:29:55 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-02-06 13:29:59 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-02-06 14:17:04 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-02-06 14:17:05 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.6
2019-02-06 14:17:06 UTC/bin/sh -c #(nop) ENV PG_SHA256=68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2019-02-06 14:22: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 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-02-06 14:22:44 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-02-06 14:22:46 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-02-06 14:22:47 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-02-06 14:22:49 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
2019-02-06 14:22:50 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-02-06 14:22:50 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-02-06 14:22:52 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-02-06 14:22:53 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-02-06 14:22:54 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-02-06 14:22:55 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-02-06 12:00:42 UTC
27.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_SHA25668a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
PG_VERSION10.6
[#000] sha256:3261f066f954b13c338d7bebabcc22a2a4037bfe4c6989b60595b13ac629445f - 9.61% (2.65 MB)
[#001] sha256:6ff5f92c7db4d11f3356e3243a8a330a8eb64fcde5310599933270ad96a2e3dc - 0.0% (176 Bytes)
[#002] sha256:d51c681420078e5dc5e67c163c2b60ead863fd8d92f2eaf6081a10ca4adac7ab - 0.0% (180 Bytes)
[#003] sha256:7cb66482184d38f93227b425be2fbb9de95131fd2822a5a879a050859ff43147 - 0.0% (148 Bytes)
[#004] sha256:9b223bb4f01911f59e3c1c0656af81898ea9e720cbd0544c67e3704f136c0e19 - 90.35% (24.9 MB)
[#005] sha256:507a1693c0c5f867ff3930d78a4a74973a250475e7a12edc29eced24052e53d2 - 0.03% (7.09 KB)
[#006] sha256:358eac7ba616f66473bc9a35c8a9934e6091152da890cd8b6bc89446243ccfb4 - 0.0% (163 Bytes)
[#007] sha256:1ecaa4f876d270b9d82992c618c85549d2fc378ab3fbaeb1635b676683412928 - 0.0% (201 Bytes)
[#008] sha256:7e25dbc14696d3a81179c34cad840138255afa1bce88f73321d20f34876db748 - 0.01% (2.31 KB)
[#009] sha256:b83086b8bed5fd4fac82a94f952a5c40b0967e3c4d92ebb0ececdb1b0d84503c - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:22eef5b6e842546e68660322c07723d9794ca0eb45ac3acf95381e2591f455c6 in /
2019-01-31 09:21:01 UTC/bin/sh -c #(nop) COPY file:a10c133d8d5e9af3a9a1610709d3ed2f85b1507f1ba5745ac12bb495974e3fe6 in /etc/localtime
2019-01-31 09:21:02 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-02-06 11:49:43 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-02-06 11:49:45 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-02-06 11:49:53 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-02-06 11:56:45 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-02-06 11:56:48 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.6
2019-02-06 11:56:50 UTC/bin/sh -c #(nop) ENV PG_SHA256=68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2019-02-06 11:59:54 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 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-02-06 11:59:59 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-02-06 12:00:05 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-02-06 12:00:08 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-02-06 12:00:15 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
2019-02-06 12:00:18 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-02-06 12:00:22 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-02-06 12:00:32 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-02-06 12:00:36 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-02-06 12:00:39 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-02-06 12:00:42 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-02-06 13:54:34 UTC
26.1 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_SHA25668a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
PG_VERSION10.6
[#000] sha256:11396e2e564eba3ffa05ba6ea52a711025650a7cfe1387d6a59fdd9a90f2e024 - 9.29% (2.42 MB)
[#001] sha256:e33c309129e1ab066f8f8e65929ab8246c5ae9ec293c9522c706fa70dfa0a4c6 - 0.0% (175 Bytes)
[#002] sha256:e4985a5640bfca6a71c569f099731d7515c39fcd802b5f4512888d72045f74c0 - 0.0% (148 Bytes)
[#003] sha256:aacf12e086d4f93c61278e7c1bd110332910827a96bf7a81abff2b350877c889 - 0.0% (115 Bytes)
[#004] sha256:2d04cb61ac1c9609f8da000b770c5826265f41ddc1fd5d2ab98f26b6166870c6 - 90.67% (23.7 MB)
[#005] sha256:6949f06a6e395323c3b662881493bbda5eadffae17ab85c1b82f053c0d5bbd97 - 0.03% (7.1 KB)
[#006] sha256:41fcaffa121190fcfb8db80356e21a3b086ef61760ed0b3f9d3848e1f8643ce9 - 0.0% (129 Bytes)
[#007] sha256:78cf650a8c7e82dd67f757b7a87d98e44ad7d2afd0886ce22e8f9f1e590a21dd - 0.0% (171 Bytes)
[#008] sha256:b5e84aa5c29bbc22643703812b2adfcf17af876b0c6f9a7d06cb247bb9922d2d - 0.01% (2.31 KB)
[#009] sha256:2e21c7714c8384e443c3c2676ebbf7fa75301125390ebe5f19c356faacdb9887 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:fdc9dcc7d932bb46a3992371288a0f80814bfb29ae8c8f1d860b6aabf0e9f893 in /
2019-01-31 12:41:44 UTC/bin/sh -c #(nop) COPY file:a10c133d8d5e9af3a9a1610709d3ed2f85b1507f1ba5745ac12bb495974e3fe6 in /etc/localtime
2019-01-31 12:41:44 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-02-06 13:38:18 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-02-06 13:38:18 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-02-06 13:38:19 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-02-06 13:51:48 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-02-06 13:51:48 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.6
2019-02-06 13:51:48 UTC/bin/sh -c #(nop) ENV PG_SHA256=68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2019-02-06 13:54:29 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 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-02-06 13:54:30 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-02-06 13:54:31 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-02-06 13:54:31 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-02-06 13:54:32 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
2019-02-06 13:54:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-02-06 13:54:33 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-02-06 13:54:33 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-02-06 13:54:34 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-02-06 13:54:34 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-02-06 13:54:34 UTC/bin/sh -c #(nop) CMD ["postgres"]