2017-08-10 22:59:51 UTC
13.7 MB
en_US.utf8
PATH/usr/lib/postgresql/9.5/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.5
PG_SHA256ade57068f134f36710fa953e1ef79185abd96572f8098741413132f79ed37202
PG_VERSION9.5.8
[#000] sha256:019300c8a437a2d60248f27c206795930626dfe7ddc0323d734143bd5eb131a6 - 13.7% (1.88 MB)
[#001] sha256:1b9e338691a687b0c350212a5a1f42c7547f1a5dfd9e6d98323c120128db5303 - 0.0% (141 Bytes)
[#002] sha256:d376e6c136f7de96c77c423f7ce1f4c82a17b782a33febc67f6f021abebf26f2 - 0.0% (115 Bytes)
[#003] sha256:1ebf83751c6dab39da0782d16f6f44df68233f5615a584c5044d662b0c01f6df - 86.23% (11.8 MB)
[#004] sha256:6097e6c79e718dc683cb388bc3a992743b849ca7079ab63951012c05a40677f4 - 0.05% (6.63 KB)
[#005] sha256:d21d4373ef236f253afe481c1dd2f67a5d12ed4d9ada4bf750fa1cf67eb77402 - 0.0% (147 Bytes)
[#006] sha256:e3bbe6ba283f3a55d6ba2e75d8b3cb41c31880db16e911352b70fb158f9874d3 - 0.0% (162 Bytes)
[#007] sha256:cf4bea687895e7cae6dff2d8f41a023f815a7e4c0d42f75d2f856b4f83b3f119 - 0.01% (1.75 KB)
[#008] sha256:815233fa67391611b9320a06f2eecac8a4f75647237de2cac37250d9799bb2f1 - 0.0% (121 Bytes)
/bin/sh -c #(nop) ADD file:9d67752278c0e5a1298cd2d6603ebaaab2aa342e27ddf191ee0fde138f82698c in /
2017-06-27 18:39:45 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2017-06-28 21:37:32 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"
2017-06-28 21:37:33 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2017-06-28 21:37:34 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2017-06-28 21:48:33 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.5
2017-08-10 22:56:18 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.5.8
2017-08-10 22:56:19 UTC/bin/sh -c #(nop) ENV PG_SHA256=ade57068f134f36710fa953e1ef79185abd96572f8098741413132f79ed37202
2017-08-10 22:58:31 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 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 --recursive /usr/local | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }' | sort -u | xargs -r apk info --installed | sort -u )" && 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
2017-08-10 22:59:47 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2017-08-10 22:59:47 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2017-08-10 22:59:48 UTC/bin/sh -c #(nop) ENV PATH=/usr/lib/postgresql/9.5/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2017-08-10 22:59:48 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2017-08-10 22:59: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)
2017-08-10 22:59:49 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2017-08-10 22:59:49 UTC/bin/sh -c #(nop) COPY file:d5038a27fbcfa2f7c3a5e92ffdbfda1676a7a65ecb52a9b377a6041a59e1c1d7 in /usr/local/bin/
2017-08-10 22:59:50 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2017-08-10 22:59:50 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2017-08-10 22:59:51 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2017-08-10 22:59:51 UTC/bin/sh -c #(nop) CMD ["postgres"]