docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.4.17-alpine
sha256:a4a3b8a686079e65211915f556cf47efa3d8a36200bf2d0fafb2a88564cfa254
2018-05-10 12:19:25 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.4
PG_SHA2567a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
PG_VERSION9.4.17
[#000] sha256:381c1d4107a4401d75b916e6dc4331efddc01adac41f49eeaa711ab898606a1a - 13.82% (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:6b68f1a8d3b5967f3ccc119e33f2ebc05f50b1915cdd0ee38ffe98b413f55d81 - 86.12% (12.6 MB)
[#005] sha256:aba4d86bac56e5b58d3e8fc6154628c4a40cd7d2f5557d7b68a8fd4c8a4d57f2 - 0.04% (6.5 KB)
[#006] sha256:2b4d456b4aece947758aece7884b1cee251556de528e4e3d41d1344c03a2efb7 - 0.0% (128 Bytes)
[#007] sha256:e8ef1e04168fb4770506f74953e0e5d75b4a10fabe8f3134db14c42ec3cfd56b - 0.0% (171 Bytes)
[#008] sha256:7a02d8b42226d34924bd7f227a11bb211194ec9dda15db447a407f686ddc6c7c - 0.01% (1.76 KB)
[#009] sha256:a0fe66225d4e1218c77e9cbe873dfca9c6960abc379d97c6a2dc0d6a28ad79af - 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:27:14 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2018-04-27 13:27:15 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.17
2018-04-27 13:27:15 UTC/bin/sh -c #(nop) ENV PG_SHA256=7a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
2018-04-27 13:29:28 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:29:29 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 13:29:29 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:29:29 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 13:29:30 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:29:30 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 12:19:24 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 12:19:24 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 12:19:25 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 12:19:25 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 12:19:25 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:108478d7a536c6ecc3b7207a6dbaeb7625209c5e628932628bf1a1bf874d13fb
2018-05-09 18:01:40 UTC
14.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.4
PG_SHA2567a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
PG_VERSION9.4.17
[#000] sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 - 13.83% (1.97 MB)
[#001] sha256:a503b44e1ce09191fd553fe4a22ab09d16dfd3164c7d0f59c7c1a54a85545fa9 - 0.0% (149 Bytes)
[#002] sha256:2117067130936383676d224fd32133e2e2e9be9847a8288271d021edede1e2b7 - 0.0% (115 Bytes)
[#003] sha256:899643b4f7b84a96afc84ad10ff2470d1f5446fa22cbe50c5889f489ef70bc78 - 86.11% (12.3 MB)
[#004] sha256:288415b66fef7566731f48e866a7cda69711b176beb146ba32ab1fd34953981d - 0.04% (6.5 KB)
[#005] sha256:0cd29af384ddbe4416e9e21e94e11063c43936794d79a06d656f80208793ce65 - 0.0% (128 Bytes)
[#006] sha256:faa4aa5913ef5d1743606ca797586fa044f8dd051c58b04086f43ff85f253f4c - 0.0% (172 Bytes)
[#007] sha256:3a788da7d844b181d5fda81a583d69fa3ee1491f31b8f82be6c3c08e70816130 - 0.01% (1.76 KB)
[#008] sha256:5b87ff92a77365a0784903cf77e3e918b8110cc9aea2546d2f7a8ac1d4089632 - 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:29:26 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2018-04-27 06:29:26 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.17
2018-04-27 06:29:26 UTC/bin/sh -c #(nop) ENV PG_SHA256=7a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
2018-04-27 06:31:25 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev 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:31:26 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 06:31:27 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:31:27 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 06:31:28 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:31:28 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-09 18:01:39 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-09 18:01:40 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-09 18:01:40 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-09 18:01:40 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-09 18:01:40 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:011ffa8f608616050da41c5ec0d1f8c6928253e6cff2db7889c54bdb80f09491
2018-05-10 07:50:25 UTC
13.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.4
PG_SHA2567a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
PG_VERSION9.4.17
[#000] sha256:95d54dd4bdadebb53f9b91b25aa7dc5fcb83c534eb1d196eb0814aa1e16f3db2 - 14.27% (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:d697146a7e60b676b5018230d9961deeabf84313db975b3423cbe94b8e996b50 - 85.66% (11.7 MB)
[#005] sha256:a3c1be2a3b8510a7bdd592a6079aa928e4eb529f3f1b188a9c59341b9e0fe755 - 0.05% (6.5 KB)
[#006] sha256:1f9faca1132c9f4213c409d2ddb0c9a0b2f8c26ea74693c6629fbb57e4c630c1 - 0.0% (161 Bytes)
[#007] sha256:60ca54da91317e2868b2b6248e1be17bb5f0156da77c34a99bee011416eada1c - 0.0% (202 Bytes)
[#008] sha256:cd2cce96cd531909e5cd08434c9ec9d48ebba238e01477b4c50ee1c67492bb04 - 0.01% (1.76 KB)
[#009] sha256:f93dc57a339e086c311b510be0637da5a407d3cd0385a6b2a8bc4703a7ec6df2 - 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 09:39:12 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2018-04-27 09:39:12 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.17
2018-04-27 09:39:13 UTC/bin/sh -c #(nop) ENV PG_SHA256=7a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
2018-04-27 10:12:49 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 10:12:54 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 10:12:59 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-04-27 10:13:00 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 10:13:03 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 10:13:04 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 07:50:19 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 07:50:23 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 07:50:24 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 07:50:24 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 07:50:25 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:649d73100fb6579a39835dd4395c2869134882d89a36117b571428732e38e3cf
2018-05-10 09:53:47 UTC
13.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.4
PG_SHA2567a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
PG_VERSION9.4.17
[#000] sha256:b78042c299ad99d1e646b18762d4bc22a84c4f88e5bb491ea6293a10f53ddf79 - 14.38% (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:4550d088e422678014f2a8f2d815b5ad2714a849bba5044e64c255124fc5264a - 85.55% (11.3 MB)
[#005] sha256:4087ec9192af153ee4a4fdb2f122e6e046260b4cc938d8ab23cf53486fc071c7 - 0.05% (6.51 KB)
[#006] sha256:e1a6a01a37a5117fa5e7c88f11a04fea095211be6b026dd034e4641d775d6b84 - 0.0% (128 Bytes)
[#007] sha256:1bcacd721eaf06b571df921e15906003efe90f68beeae66b483532661dad81a8 - 0.0% (168 Bytes)
[#008] sha256:d19c4b37c7afd8ef8ef3bdc2f640b63e43b04157b2b6475699d9647a86a95c23 - 0.01% (1.76 KB)
[#009] sha256:4adc4e97529e127fc895709001e04a2f3c674d94477e349bd0889c65c0adc4c9 - 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 02:28:55 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2018-05-01 02:28:56 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.17
2018-05-01 02:28:57 UTC/bin/sh -c #(nop) ENV PG_SHA256=7a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
2018-05-01 02:32:38 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 02:32:41 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-05-01 02:32:43 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-05-01 02:32:44 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-05-01 02:32:46 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 02:32:47 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 09:53:37 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 09:53:44 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 09:53:45 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 09:53:46 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 09:53:47 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:2917dd34664d195e21946b00354593bef8eefc73981862b4582b03a03d465c9c
2018-05-12 10:25:37 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.4
PG_SHA2567a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
PG_VERSION9.4.17
[#000] sha256:0da653ea85b50d280ec56ca2eafb7e8b37590630356e043fa9ff162d55732a23 - 14.21% (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:9c31ba48ae2b4dc35d9f15dad92f1427004923c25855c9a6c1122f4b35e1b581 - 85.73% (12 MB)
[#005] sha256:879412cd547f274095e9533de3ce39be3f72ca4dc4064b9ac0fffff70602bc41 - 0.05% (6.51 KB)
[#006] sha256:2735c3191e0bf02ff39314447a63f287be22e1a7bda3e6381c1f497178b3419b - 0.0% (162 Bytes)
[#007] sha256:58489781bd9a0f934eb1b9ce4d5dece5ef6eab6b36542fb01306e5ec01717a1b - 0.0% (199 Bytes)
[#008] sha256:3c59c7f061c2d497757b00c8582fb06a9bec92e5823f69aed91e9028367ec2f9 - 0.01% (1.75 KB)
[#009] sha256:ff94acbeb380e262a0e4eacf94c9f32a93be4f11dd3319f8e647699bffe221ad - 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:43:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2018-04-27 09:43:47 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.17
2018-04-27 09:43:48 UTC/bin/sh -c #(nop) ENV PG_SHA256=7a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
2018-04-27 09:45:36 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:45:41 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 09:45:43 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:45:45 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 09:45:46 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:45:47 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-12 10:25:32 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-12 10:25:34 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-12 10:25:35 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-12 10:25:36 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-12 10:25:37 UTC/bin/sh -c #(nop) CMD ["postgres"]
sha256:47ac23fd5b33e8236994b19a774fc51c16199c10bb96c7f7e90c6d95e893916e
2018-05-10 13:34:44 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.4
PG_SHA2567a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
PG_VERSION9.4.17
[#000] sha256:11e7bc85614a236b32043d147930fd2bc9055af8642fe30e5e56142590572b0e - 14.62% (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:41229133852272979df9a9f8924c43572dd79db2dc898611f4d459e624bae6ff - 85.32% (12.2 MB)
[#005] sha256:37af6231c333b0912a9cd3dc27eb1a00b135c2e60d673a4b0fbba960d67dd8e9 - 0.04% (6.51 KB)
[#006] sha256:0cb53955cb512884ce9f48f4f8903d155f02e8e49d42f7e2655db3dc888cc1fb - 0.0% (128 Bytes)
[#007] sha256:cf89f8305794dbd33b1b1e8685605e14837cc71449d17d3a607e4749ccd60405 - 0.0% (171 Bytes)
[#008] sha256:b353c765931fb148ec06991d12cf3a2bf921b5dddc96be6b52af476fc7083395 - 0.01% (1.76 KB)
[#009] sha256:0ed111ffbcd43de4d0e1034e676a1defec298ec707cf89008476ba2d3b00f2f6 - 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 13:16:28 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.4
2018-04-27 13:16:29 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.4.17
2018-04-27 13:16:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=7a320cd335052b840d209dc9688f09965763351c590e3cc7bf577591179fd7c6
2018-04-27 13:20:05 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:20:07 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-04-27 13:20:08 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:20:15 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-04-27 13:20: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-04-27 13:20:16 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-05-10 13:34:40 UTC/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/
2018-05-10 13:34:42 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-05-10 13:34:42 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-05-10 13:34:43 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-05-10 13:34:44 UTC/bin/sh -c #(nop) CMD ["postgres"]