2018-05-10 12:18:59 UTC
15.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.6
PG_SHA256eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
PG_VERSION9.6.8
[#000] sha256:381c1d4107a4401d75b916e6dc4331efddc01adac41f49eeaa711ab898606a1a - 13.41% (2.03 MB)
[#001] sha256:a29cce73050e1b58c218a1c94cd8c9f719d38530500ab97333eac5fdaf385dbc - 0.0% (175 Bytes)
[#002] sha256:6b9d7a8dc20ca5f1dfb46a9a65873239f3b9adc4b29914f3cc4d5b5a963b153c - 0.0% (148 Bytes)
[#003] sha256:10045aeee17299272069f9f8ef327cfde3cab186737cbf4efa9ce1d24a89b3ab - 0.0% (115 Bytes)
[#004] sha256:959b91fe766ae03559b84e8335ef36a0b4da1ff1ef0130a59252567677dbce0a - 86.53% (13.1 MB)
[#005] sha256:6939a319841b36c534dc6f2b57184beca3b5c022d16e09c8e92b621f4ab42093 - 0.04% (6.91 KB)
[#006] sha256:fd87472b9f2565cc739e7052f826e5d55377f97af5c6ace4e7c2589e947f1a24 - 0.0% (128 Bytes)
[#007] sha256:b89a7aa305460e45dda7f3bc7abda5ef2d04652e75e9268c1e226a49fc81d543 - 0.0% (171 Bytes)
[#008] sha256:e4ff7e50cbe6cb460630c460152f9bc95b1fb917203efba1a8c2f64dd9bd1704 - 0.01% (1.76 KB)
[#009] sha256:87d92494c0936a6adbfc8f26ab48ab2c64add24ea4d7da978e4b08914d500880 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:614c07101e677db9a4118a71c852a2be45a337d94c5bedfb48ae8c4cad21d625 in /
2017-12-01 18:46:48 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2017-12-01 18:46:48 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-04-27 13:16:02 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"
2018-04-27 13:16:03 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-04-27 13:16:03 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-04-27 13:19:40 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-04-27 13:19:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.8
2018-04-27 13:19:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
2018-04-27 13:22:56 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 && 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
2018-04-27 13:22:57 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 13:22:58 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-04-27 13:22:58 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 13:22:59 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)
2018-04-27 13:22:59 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 12:18:58 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 12:18:59 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 12:18:59 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 12:18:59 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 12:18:59 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-05-09 18:01:14 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.6
PG_SHA256eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
PG_VERSION9.6.8
[#000] sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 - 13.46% (1.97 MB)
[#001] sha256:a503b44e1ce09191fd553fe4a22ab09d16dfd3164c7d0f59c7c1a54a85545fa9 - 0.0% (149 Bytes)
[#002] sha256:2117067130936383676d224fd32133e2e2e9be9847a8288271d021edede1e2b7 - 0.0% (115 Bytes)
[#003] sha256:222842002cebc80e0989a704536291a7b15c7ad164f384d81e2c750d3f53178f - 86.48% (12.7 MB)
[#004] sha256:2300d8bd75d65e0250e87539e61a7c57979940105454d1df2796be83e1311b0b - 0.05% (6.91 KB)
[#005] sha256:39a22e6e8a31c74e9276a7f63832952463460435b043d67546da189bc2e92f29 - 0.0% (129 Bytes)
[#006] sha256:19df431193ffff79fefc825ede366425b578eb9164643de3fb191b5a594e5c3f - 0.0% (171 Bytes)
[#007] sha256:314e26eea7a79ba78a35e1dbd6b8bc8045f0ff20b83262767cc2b83c6bfe1455 - 0.01% (1.75 KB)
[#008] sha256:93832602b89c3a1ff23a4ad6fa63644b41202fbea0238c1149b78e57f306a0e4 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:093f0723fa46f6cdbd6f7bd146448bb70ecce54254c35701feeceb956414622f in /
2018-01-09 21:10:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-02-18 02:31: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"
2018-02-18 02:31:31 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-02-18 02:31:32 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-04-27 06:22:09 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-04-27 06:22:09 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.8
2018-04-27 06:22:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
2018-04-27 06:24:15 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev 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
2018-04-27 06:24:16 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 06:24:17 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-04-27 06:24:17 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 06:24:18 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)
2018-04-27 06:24:18 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-09 18:01:12 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-09 18:01:13 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-09 18:01:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-09 18:01:14 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-09 18:01:14 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-05-10 07:50:01 UTC
14 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
PG_VERSION9.6.8
[#000] sha256:95d54dd4bdadebb53f9b91b25aa7dc5fcb83c534eb1d196eb0814aa1e16f3db2 - 13.89% (1.94 MB)
[#001] sha256:72bf7d76c39215a547858ef9260990b9b80c0e679bb2f6ceef942d7b6d0eeec3 - 0.0% (175 Bytes)
[#002] sha256:877dbad78c12bf47aad365f9937f5a115590d5d9ea750adbeb98afd5e8a0ff05 - 0.0% (180 Bytes)
[#003] sha256:ee30b812507d677230132ab2fd9b2bcbb461d82966947165c406c0391a6dba8e - 0.0% (149 Bytes)
[#004] sha256:b9d114015750f6c8f78b2fe2659e158556a817ab69414b7ab31ea1ad1935b424 - 86.05% (12 MB)
[#005] sha256:de3889b6a859766499ffe34b5331d0a8a23dc0d091295b937fe685f1a63b7b61 - 0.05% (6.91 KB)
[#006] sha256:fd2910ef371fafde0a1d795761a4b62e1c06566c7946a6bb6a117854184cb064 - 0.0% (161 Bytes)
[#007] sha256:b171b9aee2c5d71b5b35e2f24cf6c607386bfb8855a64c8ceff7789b09e9afed - 0.0% (198 Bytes)
[#008] sha256:2ceeef9493498052a261d0f3ab89dc96771f95fccf7bbb71f88c90b354be24ee - 0.01% (1.76 KB)
[#009] sha256:ebedac158797ff01697c25d187757b82b9fcbba59a3fd0e9183e1de0731c4276 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:966d84204dc4860e9281f7c93c792137c88298edb284f267def4b38a11b79a1f in /
2017-12-01 18:41:45 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2017-12-01 18:41:46 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-04-27 07:49: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"
2018-04-27 07:49:29 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-04-27 07:49:32 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-04-27 08:30:06 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-04-27 08:30:06 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.8
2018-04-27 08:30:07 UTC/bin/sh -c #(nop) ENV PG_SHA256=eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
2018-04-27 09:04: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 && 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
2018-04-27 09:04:49 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 09:04:54 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-04-27 09:04:55 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 09:04:59 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)
2018-04-27 09:04:59 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 07:49:54 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 07:49:59 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 07:50:00 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 07:50:00 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 07:50:01 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-05-10 09:52:33 UTC
13.5 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
PG_VERSION9.6.8
[#000] sha256:b78042c299ad99d1e646b18762d4bc22a84c4f88e5bb491ea6293a10f53ddf79 - 14.02% (1.9 MB)
[#001] sha256:6fd45b97b6c2a3ac869ae5c99e087e97bc29714b165180e06f0c9116f400f2dd - 0.0% (175 Bytes)
[#002] sha256:1b32a887a236e5d7d39764e4fd9993db95c4c900f09b4be497a01589e37cef85 - 0.0% (149 Bytes)
[#003] sha256:ee1f330d87363983accf413df8ec516758c5479fc2e75cef865c71f55033b9a8 - 0.0% (112 Bytes)
[#004] sha256:bc8e2cf58b8d0f0e3800bd7ce3bbc779799c2fe09cf369b857ba99f8558e22ba - 85.91% (11.6 MB)
[#005] sha256:531340017bfc51d17ff4cf1ba267187a171407fef166e813577543c81689213b - 0.05% (6.91 KB)
[#006] sha256:fb6ecf1d3865846551510de149e6d7f0fb0d4282e61c5ace2405f273788f8423 - 0.0% (129 Bytes)
[#007] sha256:b67514b2b049567ca1f2318beb219baa1457e7b009dfb4563af1d3a9bf0e51f5 - 0.0% (168 Bytes)
[#008] sha256:6e1e385d6a270ea304e922bb39a919b9a98e9e86e27234d09bcfccf091c7ff33 - 0.01% (1.76 KB)
[#009] sha256:1f01807e0b4770a354b52cd148162c3fe57732d5a531c02dca8e56518a4f6d00 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:a6ef3cbbb1c0e5dfc6c3e41d70fd93e548594d9cb42c067e52df46d418c10a79 in /
2017-12-01 18:42:42 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2017-12-01 18:42:43 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-02-18 15:21:15 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"
2018-02-18 15:21:16 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-02-18 15:21:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-05-01 01:00:18 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-05-01 01:00:21 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.8
2018-05-01 01:00:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
2018-05-01 01:04:44 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev 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
2018-05-01 01:04:53 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-05-01 01:04:59 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-05-01 01:05:02 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-05-01 01:05:05 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)
2018-05-01 01:05:10 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 09:52:27 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 09:52:30 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 09:52:31 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 09:52:32 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 09:52:33 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-05-12 10:24:49 UTC
14.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.6
PG_SHA256eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
PG_VERSION9.6.8
[#000] sha256:0da653ea85b50d280ec56ca2eafb7e8b37590630356e043fa9ff162d55732a23 - 13.85% (1.99 MB)
[#001] sha256:9fd90b777cc38b5b6ca1b2407e647fdc22ef31b57ef98e924e7e0635adffc385 - 0.0% (176 Bytes)
[#002] sha256:6a489c2288bce888c6fac93b540da6d11957e1b4920137f6f06f21ac757708c5 - 0.0% (178 Bytes)
[#003] sha256:d40f964dcf4eb7ac5150e2a57f549a4d89d6780315f8dbc2960a7b3de7697e08 - 0.0% (149 Bytes)
[#004] sha256:d0e13175efc74c1abb7c0397d99ad05e4bd5f750a00f790217375416f207c459 - 86.09% (12.3 MB)
[#005] sha256:ed33800df9359519f4f9958a11b175d205c50f530887bef940c344c76db74785 - 0.05% (6.91 KB)
[#006] sha256:2239dffb0eb341df7e2a7791260053ff0f884343e7e4b963c9bf8d36c91afefc - 0.0% (161 Bytes)
[#007] sha256:6a3c1048f950af2eeca21cd318c989d42cd5377c5459912d178061b623b098f6 - 0.0% (200 Bytes)
[#008] sha256:30d32b9474be76739575a491f50d784c4c8a81893f57a813eed8d33707a13239 - 0.01% (1.76 KB)
[#009] sha256:3d53d1a7693137012c08738ed68667d616825e8e6c65f8306c8abc4480ee9034 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:791370adae5cfa8feec749693f5a995a01f58f0462b7aa675fc5bf991e1282b5 in /
2017-12-01 18:41:55 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2017-12-01 18:41:57 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-02-17 23:01:41 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"
2018-02-17 23:01:43 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-02-17 23:01:47 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-04-27 09:32:53 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-04-27 09:32:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.8
2018-04-27 09:32:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
2018-04-27 09:35:27 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 && 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
2018-04-27 09:35:30 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 09:35:33 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-04-27 09:35:36 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 09:35:39 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)
2018-04-27 09:35:41 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-12 10:24:45 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-12 10:24:47 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-12 10:24:48 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-12 10:24:49 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-12 10:24:49 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-05-10 13:33:21 UTC
14.7 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
PG_VERSION9.6.8
[#000] sha256:11e7bc85614a236b32043d147930fd2bc9055af8642fe30e5e56142590572b0e - 14.22% (2.08 MB)
[#001] sha256:3f825cbb729285f1fe2a0cd1d4d36897e3fe2191c5ee044ce11a5d301dc64a34 - 0.0% (175 Bytes)
[#002] sha256:c2901b2cb7072f4813c9b7ac67da7313fb2a8decdce071e54219eca565c3f9dc - 0.0% (148 Bytes)
[#003] sha256:3bba4f50d1c4a54c9b128d41df2bd434e0840a25d049f44eeb5827254b2f0e4a - 0.0% (115 Bytes)
[#004] sha256:691a93ea27c8f4c1452d7b19ec76de92c345c87a36fb45f6eb1559eb623d04b6 - 85.72% (12.6 MB)
[#005] sha256:6ad4b45a001217f370840ae77b3e07bc1557e9c7b444494e6d1bcd3e3e9ccafc - 0.05% (6.91 KB)
[#006] sha256:4db806d85762d70a5a14b35f084afbc5412d3a1925be287ccd6e0153c0fbcb4d - 0.0% (128 Bytes)
[#007] sha256:7f8a3961a30260eb5eaa7ebf1f5df85865867547c64a9a8cc32dcbfd1f16885a - 0.0% (170 Bytes)
[#008] sha256:c13da077a42cd8d2c91519fa33b1f2b05ea99ee80b460f40bed72a238481c13c - 0.01% (1.76 KB)
[#009] sha256:e0a8c4a57250ec7fb5226ac9f7e478fc4f78a402d4b01a99df2634b4f8aec9fa - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:9c09dfc247c393ab1c6205a4b7857047a3d88e398e8d35aede30f7d613ef1de9 in /
2017-12-01 18:41:58 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2017-12-01 18:41:58 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-02-18 10:25:35 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"
2018-02-18 10:25:35 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-02-18 10:25:36 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-04-27 12:50:42 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-04-27 12:50:42 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.8
2018-04-27 12:50:43 UTC/bin/sh -c #(nop) ENV PG_SHA256=eafdb3b912e9ec34bdd28b651d00226a6253ba65036cb9a41cad2d9e82e3eb70
2018-04-27 12:52:40 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 && 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
2018-04-27 12:52:41 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 12:52:41 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-04-27 12:52:41 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 12:52:42 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)
2018-04-27 12:52:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 13:33:17 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 13:33:19 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 13:33:20 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 13:33:20 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 13:33:21 UTC/bin/sh -c #(nop) CMD ["postgres"]