2017-11-29 19:59:33 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_MAJOR10
PG_SHA2563ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713
PG_VERSION10.1
TIMESCALEDB_VERSION0.7.1
[#000] sha256:b56ae66c29370df48e7377c8f9baa744a3958058a766793f821dadcb144a4647 - 13.51% (1.9 MB)
[#001] sha256:fa78197d3423d8feaa8568548d72a7d3d37ffd4d462d1d662aeab098fcf4a697 - 0.0% (148 Bytes)
[#002] sha256:908e39998270936a8ee6025396468a0b8dc2920669cc7a727d22c688026992bb - 0.0% (115 Bytes)
[#003] sha256:0d840019f7f1528ffc3410455492bb503d412659605a133b77da304ca8bf9530 - 83.85% (11.8 MB)
[#004] sha256:cb5e5a62d59e6d5c37c8d27bdc89676e56b73e55ff52eacac94386c3eb1169be - 0.05% (7.1 KB)
[#005] sha256:3f35a35a53be982a7ee5825f1c5c55060fb122d7cb6be7726e58b4fb27e7fe50 - 0.0% (152 Bytes)
[#006] sha256:bbd490dee6dfe3c58fa1be19e53c1e9a7a549cb6b1a4307eb145b286303a7b7e - 0.0% (171 Bytes)
[#007] sha256:021c734743f3c3261a792ecca958c8d24485cecd6c78bb644060b79118e93228 - 0.01% (1.76 KB)
[#008] sha256:707f5fec529f148d691bbc356742c0567a1a7904c50edaf09053ac1d902d9a80 - 0.0% (121 Bytes)
[#009] sha256:87ac0073b041457440d12bce59c7639d2850c0b49b6793e8bf829611206c79a5 - 2.56% (368 KB)
[#010] sha256:25d6f52dec20eea368c6a0e2614a7bcd82209187697ad17f2e8bd803df58ebc3 - 0.0% (658 Bytes)
[#011] sha256:1f6b0be90d35eff3ef9c157c0025e5b78decdf080bf4e81bb659db2bc7b410e2 - 0.0% (659 Bytes)
/bin/sh -c #(nop) ADD file:1e87ff33d1b6765b793888cd50e01b2bd0dfe152b7dbb4048008bfc2658faea7 in /
2017-11-03 22:10:18 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2017-11-04 09:06: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"
2017-11-04 09:06:02 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2017-11-04 09:06:03 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2017-11-04 09:06:03 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2017-11-13 16:12:55 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.1
2017-11-13 16:12:55 UTC/bin/sh -c #(nop) ENV PG_SHA256=3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713
2017-11-13 16:16:19 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
2017-11-13 16:16:20 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2017-11-13 16:16:21 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2017-11-13 16:16:21 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2017-11-13 16:16:22 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-11-13 16:16:22 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2017-11-13 16:16:22 UTC/bin/sh -c #(nop) COPY file:d5038a27fbcfa2f7c3a5e92ffdbfda1676a7a65ecb52a9b377a6041a59e1c1d7 in /usr/local/bin/
2017-11-13 16:16:23 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2017-11-13 16:16:23 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2017-11-13 16:16:24 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2017-11-13 16:16:24 UTC/bin/sh -c #(nop) CMD ["postgres"]
2017-11-15 03:24:56 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2017-11-29 19:59:14 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=0.7.1
2017-11-29 19:59:31 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && mkdir -p /build/timescaledb && wget -O /timescaledb.tar.gz https://github.com/timescale/timescaledb/archive/$TIMESCALEDB_VERSION.tar.gz && tar -C /build/timescaledb --strip-components 1 -zxf /timescaledb.tar.gz && rm -f /timescaledb.tar.gz && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc libc-dev make cmake util-linux-dev && cd /build/timescaledb && ./bootstrap && cd build && make install && cd ~ && apk del .fetch-deps .build-deps && rm -rf /build && sed -r -i "s/[#]*\s*(shared_preload_libraries)\s*=\s*'(.*)'/\1 = 'timescaledb,\2'/;s/,'/'/" /usr/local/share/postgresql/postgresql.conf.sample
2017-11-29 19:59:32 UTC/bin/sh -c #(nop) COPY file:05e1e974efac04e17e609ae261b4dfbc63bc06af0b66dccc1180e456d1b6f086 in .
2017-11-29 19:59:33 UTC/bin/sh -c chmod +x backup_init.sh
2017-11-29 19:59:33 UTC/bin/sh -c #(nop) ENTRYPOINT ["./backup_init.sh"]
2017-11-29 19:59:33 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.