2018-07-11 11:03:16 UTC
15.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.5
PG_SHA2565408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
PG_VERSION9.5.13
[#000] sha256:ef15772113129a5330876ce10683bbf6509a4c4c99b3a99894dcbc7560975052 - 13.7% (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:4c3dc18876bb3a96d5233e8cc23a66b57a660389c2ef260c243dc2b8deba18d3 - 86.24% (13.6 MB)
[#005] sha256:a9f7f17b47ed0544aaa9879402d96e1723dedca6ef53ef068630efb879e51f12 - 0.04% (6.64 KB)
[#006] sha256:ce4e15947509a574de972e2dada9e44fe6c81db73206828b6f11881ec40354b6 - 0.0% (128 Bytes)
[#007] sha256:f53f12d25b5a4e9a2c8b850a17443cb2e7158cfe87cc05f3e20011ab2d24dbd8 - 0.0% (170 Bytes)
[#008] sha256:52d65ac8c80143e5ecf8786a2f3bff28a2eb02aaef0d7b36071f4affc1d6110d - 0.01% (2.18 KB)
[#009] sha256:3ed6f4ad72ed578cb1da8e9d8071abd8be84f9c0bc752d2e7e19d1a18b9cbc3e - 0.0% (117 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 11:00:24 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2018-07-11 11:00:25 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.13
2018-07-11 11:00:25 UTC/bin/sh -c #(nop) ENV PG_SHA256=5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
2018-07-11 11:02:59 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 11:03:04 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 11:03:04 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-11 11:03:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 11:03: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-07-11 11:03:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 11:03:06 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 11:03:07 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 11:03:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 11:03:16 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 11:03:16 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-07-11 00:59:03 UTC
15.4 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA2565408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
PG_VERSION9.5.13
[#000] sha256:8e3ba11ec2a2b39ab372c60c16b421536e50e5ce64a0bc81765c2e38381bcff6 - 13.69% (2.1 MB)
[#001] sha256:fbb9adb8cff82fca4ee56d72d6f8084c02ba5ef008039979a1379e9162703cc6 - 0.0% (149 Bytes)
[#002] sha256:aa8817b9e00daac6d86d105d480aa5c8ef78b76903e15283154197774f718e7e - 0.0% (115 Bytes)
[#003] sha256:4bf2aaaa6fa57ffb774452e0355d6847d8b4e6b42e675d0d3bdd60b5354516b4 - 86.25% (13.3 MB)
[#004] sha256:f2d9b733e67e17c235276067627e9f56194f5316ee368ac11ac4ee5e058d09bd - 0.04% (6.64 KB)
[#005] sha256:c080b0dfa3cb1332c88835f9b9eed1069a5bfac5f0b7cd4c3f5c79ed077ddb2b - 0.0% (129 Bytes)
[#006] sha256:156656f194bda1bbdf42b73760f707ca89ca303a2a1860cb74ffee3852104a7b - 0.0% (170 Bytes)
[#007] sha256:d63dd09852f15022e69e75404bb440923cac4c67df48b91121a43383a7a1fd66 - 0.01% (2.18 KB)
[#008] sha256:91fd29ed4197778b1ebdcf85161fc123423cda956b1019a1b9833013d9adbc6e - 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:56:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2018-07-11 00:56:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.13
2018-07-11 00:56:56 UTC/bin/sh -c #(nop) ENV PG_SHA256=5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
2018-07-11 00:58: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 && 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:58:48 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 00:58:48 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:58:49 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 00:58: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)
2018-07-11 00:59:02 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 00:59:02 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 00:59:03 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 00:59:03 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 00:59:03 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 00:59:03 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-07-14 10:33:17 UTC
14.6 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA2565408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
PG_VERSION9.5.13
[#000] sha256:ee7d700abbf209aa401ef5d53f86af298a25e8154b3259036e9307d08f255c5d - 14.02% (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:eae84cc5329243916799a19292c6ef5c83378459abad424468510ebe4d857ef9 - 85.91% (12.5 MB)
[#005] sha256:e09e335c38915664abef7cf5469482ddd9cae73686876f4c5f6405d581b2c7b1 - 0.04% (6.65 KB)
[#006] sha256:391a8b138becf9e762f2b9a468a15de5479b9f6c01637f1f45b888ef39935382 - 0.0% (161 Bytes)
[#007] sha256:164500a43c683a2d2da0420c6dd9c84087a828f39064dc8f2c8d3db128a159a6 - 0.0% (202 Bytes)
[#008] sha256:895b3bc95b7c126a68fc7073120a99a96754201ad7b5b38a5c8b7b774cce2905 - 0.01% (2.18 KB)
[#009] sha256:be4bbc30cdc74842a0682de019073d86e31f4c60704736822025376c203f1cee - 0.0% (121 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:59:07 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2018-07-14 09:59:08 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.13
2018-07-14 09:59:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
2018-07-14 10:32: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 && 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 10:33:00 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-14 10:33:04 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-07-14 10:33:05 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-14 10:33:08 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 10:33:09 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-14 10:33:10 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-14 10:33:15 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-14 10:33:16 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-14 10:33:16 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-14 10:33:17 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-07-11 09:17:11 UTC
14.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA2565408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
PG_VERSION9.5.13
[#000] sha256:47e04371c99027fae42871b720fdc6cdddcb65062bfa05f0c3bb0a594cb5bbbd - 14.17% (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:976eb279744b793e703d60f7d28f6188614b917cc3c0e20913a381a259e3ecda - 85.76% (12.1 MB)
[#005] sha256:65caadd79e5ed629e046afff7f3ef0d6aeba4cca3ff44b15e18e9ea12cfeda21 - 0.05% (6.64 KB)
[#006] sha256:1547bbfd142bb09cfd91c8229bad711ddff2f8a95917552bd67dfc432214be79 - 0.0% (129 Bytes)
[#007] sha256:2049ea93bf8e313ff892e2ec2a94dc80e148120d79ec7f1d5c038ff03cda2b40 - 0.0% (170 Bytes)
[#008] sha256:a3dbd18df283020b4618e8221b2de31bfbb1405cfe10b151bf2cd0e446735e37 - 0.02% (2.18 KB)
[#009] sha256:1b36c260cbda1e76ffa8f9d5d94d5b30288e3fc72e26bebe5ababd8873a932b0 - 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:13:08 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2018-07-11 09:13:09 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.13
2018-07-11 09:13:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
2018-07-11 09:16:59 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:17:01 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 09:17:03 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:17:04 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 09:17: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-07-11 09:17:06 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 09:17:07 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 09:17:08 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 09:17:09 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 09:17:10 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 09:17:11 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-07-11 10:17:46 UTC
14.9 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA2565408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
PG_VERSION9.5.13
[#000] sha256:e642bcb5b1890a07dd2fc8be2bc35edf5e2b651d4993e71caef03b4b43ace970 - 14.02% (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:fa5ec3956d1d97963e6107f123910a7bb75079b385d3ed3bd1fa8311d5c191aa - 85.91% (12.8 MB)
[#005] sha256:eefa9f5a047df2631af9adcf6ada8cd390d9935bf42380a091850203a4afb76e - 0.04% (6.65 KB)
[#006] sha256:66ab5cefbcf788acf4db9c36318c199e67d267947f0c4772c460131eb9837c9c - 0.0% (161 Bytes)
[#007] sha256:39979455a4ef6a8e88f3fc5a0389d68a09055ee73fba7418f228be72eb12ccf3 - 0.0% (202 Bytes)
[#008] sha256:374be1b3e07dab16af8b26965d20617924943a339be48fa354e3bc6517b328a4 - 0.01% (2.18 KB)
[#009] sha256:dad2d2fdc46ae2f734f86a4f97ddc195c0ecf326bced39930e013441ba5b58ad - 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:14:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2018-07-11 10:14:30 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.13
2018-07-11 10:14:31 UTC/bin/sh -c #(nop) ENV PG_SHA256=5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
2018-07-11 10:16:52 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:16:58 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 10:17:00 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:17:02 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 10:17:06 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:17:15 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 10:17:19 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 10:17:25 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 10:17:32 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 10:17:40 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 10:17:46 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-07-11 12:02:36 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.5
PG_SHA2565408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
PG_VERSION9.5.13
[#000] sha256:cdf21ace94188d512903eea53ea8559677e0e6ffd5d6a180a1d88c118abc96fc - 14.47% (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:bf1ccb9de48366d893bc422d6282287fef7a184ed346a77bbeb50f2af06c0821 - 85.47% (13 MB)
[#005] sha256:846d68a604cb051c07ea8bc20a85d6fbc2fe54d4b7f7e5d3117abe9f0888b6fe - 0.04% (6.65 KB)
[#006] sha256:a6241a021dfb159673fe0af0d0efae7cda55c84e118e2269babdd61e5961863f - 0.0% (129 Bytes)
[#007] sha256:d466afca4e81a7e807db11c87e1326f75d9739ce0b7d8b43b942cc5635f45f09 - 0.0% (170 Bytes)
[#008] sha256:7866cdaf0cbdc2b416e48d94d87cc05f78f6005747625c53c05e0850d9c335ca - 0.01% (2.18 KB)
[#009] sha256:c435655267759aea5bdcf912e745f46d5bcd0630c4bd0377f6aed2acc771b1a9 - 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 12:00:39 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2018-07-11 12:00:40 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.13
2018-07-11 12:00:40 UTC/bin/sh -c #(nop) ENV PG_SHA256=5408b86a0b56fd0140c6a0016bf9179bc7817fa03d5571cca346c9ab122ea5ee
2018-07-11 12:02:32 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:02:33 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-07-11 12:02:33 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:02:33 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-07-11 12:02:34 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:02:34 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-07-11 12:02:34 UTC/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/
2018-07-11 12:02:35 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-07-11 12:02:35 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-07-11 12:02:35 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-07-11 12:02:36 UTC/bin/sh -c #(nop) CMD ["postgres"]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.