docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.6.9-alpine
sha256:9bc11c47b78d4402056b57d2c28d31112a180079a18a0cb7bcb70e4db1329aa3
2018-07-11 11:00:01 UTC
16.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_SHA256b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
PG_VERSION9.6.9
[#000] sha256:ef15772113129a5330876ce10683bbf6509a4c4c99b3a99894dcbc7560975052 - 13.47% (2.17 MB)
[#001] sha256:6df692b84cf35e6038d677f9ab7de2a3c671c57671043da1d20d99252e0d9c42 - 0.0% (175 Bytes)
[#002] sha256:68f1f64a5de43fc9cf3d68cbe05f2a18e17a39e44d1512ce0b3911f2bc59f77e - 0.0% (148 Bytes)
[#003] sha256:72347c8a13f638fd36f586cfa21f37b4da1dd04bab6b6204d3ce2dc8f04d98e8 - 0.0% (115 Bytes)
[#004] sha256:d1e2df5dc9da309190c237ec90f92f0f1d1883c663a331bc4d30540722fbe9e7 - 86.47% (13.9 MB)
[#005] sha256:f8a1b613f6b4a0ee6f95e977c7ef60e8930198a6b29c96e1e6ba2b339d844e62 - 0.04% (6.91 KB)
[#006] sha256:4e3c7fcacc85cbee9b931cbfdb4895072f87239b1066d4f0fdfe4ccd5cd4a19b - 0.0% (129 Bytes)
[#007] sha256:ec5bb43cef19b5a18b14e3da400b30917dcc523848122cfd5bfb628d1fb16149 - 0.0% (168 Bytes)
[#008] sha256:77abd929b8af66a1798e172bce5d86409ef1820cb59f3b79c79b7d0c6e7e8dee - 0.01% (2.18 KB)
[#009] sha256:97c55829128cfce85f717cca78a24ba3dbc54f5501b6ce36eccb91758e0b3684 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:ebd40cda2f6087daf4d14e6dc1ee0b4a0fb5dc96c70129be8e07de0e5c628312 in /
2018-07-06 15:02:07 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2018-07-06 15:02:07 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-07-11 10:50: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-07-11 10:50:42 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-07-11 10:50:42 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-07-11 10:57:13 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-07-11 10:57:13 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.9
2018-07-11 10:57:14 UTC/bin/sh -c #(nop) ENV PG_SHA256=b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
2018-07-11 10:59: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-07-11 10:59:57 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 10:59:58 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-11 10:59:58 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 10:59: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-07-11 10:59:59 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 10:59:59 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 11:00:01 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 11:00:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 11:00:01 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 11:00:01 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:e0977532f922bc4c6a71b75bb5e8b82890a96a4afdb1a1377df641acdcf16c63
2018-07-11 00:56:26 UTC
15.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_SHA256b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
PG_VERSION9.6.9
[#000] sha256:8e3ba11ec2a2b39ab372c60c16b421536e50e5ce64a0bc81765c2e38381bcff6 - 13.46% (2.1 MB)
[#001] sha256:fbb9adb8cff82fca4ee56d72d6f8084c02ba5ef008039979a1379e9162703cc6 - 0.0% (149 Bytes)
[#002] sha256:aa8817b9e00daac6d86d105d480aa5c8ef78b76903e15283154197774f718e7e - 0.0% (115 Bytes)
[#003] sha256:99c9ac658d900ca94bd8df7ae7d9009bb5acdbdbcb1d80a4c92c4e0624819852 - 86.48% (13.5 MB)
[#004] sha256:ee6874dab3037094b00717532b7d6e94ef839588b42faf4656341556648e834e - 0.04% (6.91 KB)
[#005] sha256:1d36cc86e0e116468eaf9ed86ad9b0410e75d33e915032d68306eb2718bfe74d - 0.0% (129 Bytes)
[#006] sha256:52c391996931024e2df0fd2d3f8a7a89c59fea85eba70cdfa0f7067ff0e93871 - 0.0% (170 Bytes)
[#007] sha256:24b9df03330fb2960350b300a32ebf9c6a2fa149f975feb13001c82ee4ea9a81 - 0.01% (2.18 KB)
[#008] sha256:3f62796a491bb40955772b1d9e2fbd12f0d9c100c5a8c08e5b3ff31963e0d2ce - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:25f61d70254b9807a40cd3e8d820f6a5ec0e1e596de04e325f6a33810393e95a in /
2018-07-06 14:14:06 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-07-11 00:47:50 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-07-11 00:47:50 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-07-11 00:47:51 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-07-11 00:54:22 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-07-11 00:54:22 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.9
2018-07-11 00:54:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
2018-07-11 00:56:20 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-07-11 00:56:22 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 00:56:22 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-11 00:56:23 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 00:56:23 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-07-11 00:56:24 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 00:56:24 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 00:56:25 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 00:56:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 00:56:26 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 00:56:26 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:3ffb2098fbc88880e50febad447695f76c5722325b31cbe7185f7ff7c3af6e44
2018-07-14 09:58:51 UTC
14.8 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_SHA256b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
PG_VERSION9.6.9
[#000] sha256:ee7d700abbf209aa401ef5d53f86af298a25e8154b3259036e9307d08f255c5d - 13.79% (2.05 MB)
[#001] sha256:a1653f4692c1ccea69cd46121d4f1371957f66e97a20141371dd4da10ebaec19 - 0.0% (175 Bytes)
[#002] sha256:be89c0bdfe21471b24dd28c380bc35cebe521da2e9615c5be939deafd734624c - 0.0% (180 Bytes)
[#003] sha256:852d2cfc5d822ef2846113436b3d9d9264722ad578117a2e770ea982600c9511 - 0.0% (149 Bytes)
[#004] sha256:3f097676ddc5ed5447dc9c7a59883b5b1140c6a831a3a44ce14f3f7aa04eea90 - 86.14% (12.8 MB)
[#005] sha256:66ef3ac9cdfd6650187ac687336a1126341f37ed32192f5dea9dd7fb945765aa - 0.05% (6.91 KB)
[#006] sha256:9eaece84fefe2a32ef759276890213840730f2ea1f955c67b7a34369fadd66d5 - 0.0% (161 Bytes)
[#007] sha256:aaf6077cd91c52290647d6887bc5be9ab05f84eeaefa13d6cf2cbeb1f51db44c - 0.0% (201 Bytes)
[#008] sha256:9d890ec1833e2002ab617d3749cb96b94b7f20f90be365d6c6091b45312889dd - 0.01% (2.18 KB)
[#009] sha256:2683b9240cc1419eb9f7097b446f5d9b565ca15d54d93f6e8caaad2ae4871521 - 0.0% (120 Bytes)
/bin/sh -c #(nop) ADD file:122e3422d9afa971806601812374fdd9d00c8edc8e9a6df7256e2caa85fab6d1 in /
2018-07-06 07:53:30 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2018-07-06 07:53:30 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-07-14 07:49:44 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-07-14 07:49:45 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-07-14 07:49:49 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-07-14 09:20:39 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-07-14 09:20:39 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.9
2018-07-14 09:20:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
2018-07-14 09:58: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-07-14 09:58:33 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-14 09:58:37 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-14 09:58:38 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-14 09:58: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-07-14 09:58:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-14 09:58:44 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-14 09:58:48 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-14 09:58:49 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-14 09:58:49 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-14 09:58:51 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:458fb0aa0ea91f08d0a5bc3c722d4f36d1d4595f53363073bbaae913108dde6c
2018-07-11 09:12:48 UTC
14.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
PG_VERSION9.6.9
[#000] sha256:47e04371c99027fae42871b720fdc6cdddcb65062bfa05f0c3bb0a594cb5bbbd - 13.93% (2 MB)
[#001] sha256:b4103359e1ecd9a7253d8b8a041d4e81db1ff4a5e1950bc0e02305d221c9e6c2 - 0.0% (176 Bytes)
[#002] sha256:437d5ea65f8f13faa3042893bc9dd0a4e5b68562c0eb1f9aeaf258936fe72140 - 0.0% (148 Bytes)
[#003] sha256:cf835df21096513cbddcf69a9b532c79832f2cd1c8b47e78e9776fc76eb24340 - 0.0% (115 Bytes)
[#004] sha256:7f1e008e69b8c8c01049ee2bd2e46b602e4c4e408d1161072da049b3b78bdf4d - 86.0% (12.4 MB)
[#005] sha256:6ac5b1b1bc8e8dd375f56f6a5deb8894222e602d9d6425a8fc2889cf886cdd7f - 0.05% (6.91 KB)
[#006] sha256:844ed6a2543021493fcb3f0e4714659b2e7d46bd8bdc56452bd275e28564ebb2 - 0.0% (130 Bytes)
[#007] sha256:443a7303623c023cee2e4b37fd2b972389067f1ace495630f12a8674cfef92a5 - 0.0% (171 Bytes)
[#008] sha256:ae9bb0a96556455224039f57a82c17cad7c0c46600712f95a75bc1522a579923 - 0.01% (2.18 KB)
[#009] sha256:11c3d5f3e5e53ce054889c99cd59b8431a2d11c3577cb3a92d096bda489364a8 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:199a5a48bddabaf1f649f58f3b17c323a1aa1a50e939dfdea3542e4041e91b7b in /
2018-07-06 08:41:03 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2018-07-06 08:41:04 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-07-11 08:58: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-07-11 08:58:15 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-07-11 08:58:17 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-07-11 09:08:35 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-07-11 09:08:36 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.9
2018-07-11 09:08:37 UTC/bin/sh -c #(nop) ENV PG_SHA256=b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
2018-07-11 09:12:35 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-07-11 09:12:37 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 09:12:39 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-11 09:12:40 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 09:12: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-07-11 09:12:42 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 09:12:43 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 09:12:45 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 09:12:46 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 09:12:47 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 09:12:48 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:4dc9669289d7e4e3a35384b9d1c449a2a536b6576468a4daaf38214c90e225f2
2018-07-11 10:14:07 UTC
15.2 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA256b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
PG_VERSION9.6.9
[#000] sha256:e642bcb5b1890a07dd2fc8be2bc35edf5e2b651d4993e71caef03b4b43ace970 - 13.79% (2.09 MB)
[#001] sha256:2e09410b1fce4c4630b3bc57c6ee158ee9821ec415d0acaa1607b9e0bcf76d91 - 0.0% (176 Bytes)
[#002] sha256:99cf65db7a2a46b10230d6919606d6370a8f89f4126cb2e72c0e8e2b817cc9bd - 0.0% (180 Bytes)
[#003] sha256:831e22a24061ee9561c3ce50ae211d56c4d735d93bc6f6ba82661c69ebaaea94 - 0.0% (149 Bytes)
[#004] sha256:945d9030e38b1f33813454c76a79a6220baa8c048dd738c580825d951d63caf9 - 86.15% (13.1 MB)
[#005] sha256:f5e6dbbcc4a6c84007175463827bffb07c3c091202b5991a7cc16f3a0480a5f2 - 0.04% (6.91 KB)
[#006] sha256:597906b61bdc9f08a0f84200950e2b93ef37ce3c7fa4f0650b2bfc6e05a7cd31 - 0.0% (160 Bytes)
[#007] sha256:a2d39a14390b676f7de4292cabcb1a403df5b0694b53cbe0a7d27ffbe6b4b8a3 - 0.0% (199 Bytes)
[#008] sha256:4ae17a99d0a252a371e1fd17690be0efc91f72ad5d5e802b2f0bd51e8d53b158 - 0.01% (2.18 KB)
[#009] sha256:8530efc1fec7de87f2127653ea8c2c8b3fbb66e25e8bcb3663f7046dbb7497e3 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:4ff20d593b16518d45b1b1d6efdab141199316dba7a53ce7459249f5de690dfd in /
2018-07-06 08:18:10 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2018-07-06 08:18:11 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-07-11 10:01: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-07-11 10:01:29 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-07-11 10:01:32 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-07-11 10:10:38 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-07-11 10:10:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.9
2018-07-11 10:10:42 UTC/bin/sh -c #(nop) ENV PG_SHA256=b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
2018-07-11 10:13:04 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev 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-07-11 10:13:18 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 10:13:31 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-11 10:13:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 10:13: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-07-11 10:13:47 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 10:13:56 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 10:14:01 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 10:14:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 10:14:05 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 10:14:07 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:a0248461c00c5cc2863070baba32062cab3182384456d6dd9f4937af11a15d88
2018-07-11 12:00:18 UTC
15.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_SHA256b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
PG_VERSION9.6.9
[#000] sha256:cdf21ace94188d512903eea53ea8559677e0e6ffd5d6a180a1d88c118abc96fc - 14.22% (2.2 MB)
[#001] sha256:ea178433f2f09080fbbf77f09da1b16d588b7ced380d495a2f2ad00d28468338 - 0.0% (175 Bytes)
[#002] sha256:398fccf2ffccf7250c1715d26143118893acb524a48bced68b09ea5b8eec51d5 - 0.0% (149 Bytes)
[#003] sha256:9218ec3eacdd51c0198b5043ce0115b269b534e8da4fd8aa0f07d1b7e3f1f1ab - 0.0% (115 Bytes)
[#004] sha256:5aab40976027b338bd711304bd4503a374a6129fb289aedb60efdee1862180be - 85.72% (13.3 MB)
[#005] sha256:f0a6145706abe8d2cecb6ab6b977bd1550ed43817bd69b53c5fbf4cd6628be3a - 0.04% (6.91 KB)
[#006] sha256:b6ff415554eafabb829ec1a2761cbadb23d08829b57100df0d759999a6884e2c - 0.0% (128 Bytes)
[#007] sha256:25635d93cfbcb4fe441cf11cd6026df00161c2bcc57ecfcd73ccee6c832f16ea - 0.0% (171 Bytes)
[#008] sha256:cb47650c6eb65b82f30c158a84a9b2ef82efc2f2adcecbe4bdea280269d4d5e3 - 0.01% (2.18 KB)
[#009] sha256:1ac6017bfda1e1fac4146999374a2e0cf7102ce417c9e6af3fe99494eeb1affa - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:376dd7fc34ad39570d2e20f3704305e788ae613c589445b3e8fb880147c3eb59 in /
2018-07-06 11:41:43 UTC/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime
2018-07-06 11:41:43 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-07-11 11:52:46 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-07-11 11:52:46 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-07-11 11:52:47 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-07-11 11:58:17 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-07-11 11:58:17 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.9
2018-07-11 11:58:17 UTC/bin/sh -c #(nop) ENV PG_SHA256=b97952e3af02dc1e446f9c4188ff53021cc0eed7ed96f254ae6daf968c443e2e
2018-07-11 12:00:14 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-07-11 12:00:15 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 12:00:16 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-11 12:00:16 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 12:00:16 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-07-11 12:00:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 12:00:17 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 12:00:17 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 12:00:18 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 12:00:18 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 12:00:18 UTC/bin/sh -c #(nop) CMD ["postgres"]