2017-11-29 19:59:06 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_SHA256399cdffcb872f785ba67e25d275463d74521566318cfef8fe219050d063c8154
PG_VERSION9.6.6
TIMESCALEDB_VERSION0.7.1
[#000] sha256:b1f00a6a160cd3696edba6f13ebd1d6a5808216a78ec4b753444ab8f30483b1f - 13.07% (1.88 MB)
[#001] sha256:25a88a2feda9fd9c11a4e26126bdb3c7b35e03f06fc60232e8146ab66c6e3fbe - 0.0% (148 Bytes)
[#002] sha256:bcd866a92fb72cb1d8102afcef8d01e8751f657b317d150bfaa34a8fe61b2f11 - 0.0% (115 Bytes)
[#003] sha256:4f51117524406c3d0ca878fe3e9a9f182ac753667c3f937ba6837de0b06fc677 - 84.36% (12.1 MB)
[#004] sha256:5ebed1cae086687c98e7d4dc50d520c3165cbe288fbe30ac18d71940b97927e8 - 0.05% (6.91 KB)
[#005] sha256:dfba8057a35498955429fedafc435b2aeb4a857f57fb64f3636b40d00e28f371 - 0.0% (153 Bytes)
[#006] sha256:d0eb338c9df5e8e254cb3940df153dd9b35db473c831d063c99ae6f4446c3de0 - 0.0% (171 Bytes)
[#007] sha256:4aa7632b4dad4c1e8e42eed2bd63419d0eaee646fa35c7492732d7c8ec03337a - 0.01% (1.76 KB)
[#008] sha256:20560a78883f99bcc12444af1b08f2573ab591cc3971eb4e9afdfff971c52aed - 0.0% (121 Bytes)
[#009] sha256:abbfaa6ba73e90ccf519b6bd3ddbaa0f0cdc3e2c2b56b193bed8e5e2740f13e8 - 2.49% (367 KB)
[#010] sha256:25d6f52dec20eea368c6a0e2614a7bcd82209187697ad17f2e8bd803df58ebc3 - 0.0% (658 Bytes)
[#011] sha256:1f6b0be90d35eff3ef9c157c0025e5b78decdf080bf4e81bb659db2bc7b410e2 - 0.0% (659 Bytes)
/bin/sh -c #(nop) ADD file:92bfed3f8dfbee01eab85c6a1d6bc6894c5a75f9a4e2c414e9b4d05b9fcd19d0 in /
2017-11-03 22:10:27 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2017-11-04 09:10:49 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:10:49 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2017-11-04 09:10:50 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2017-11-04 09:10:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2017-11-13 16:17:38 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.6
2017-11-13 16:17:38 UTC/bin/sh -c #(nop) ENV PG_SHA256=399cdffcb872f785ba67e25d275463d74521566318cfef8fe219050d063c8154
2017-11-13 16:21: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 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:21:27 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2017-11-13 16:21:28 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:21:28 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2017-11-13 16:21:29 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:21:29 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2017-11-13 16:21:30 UTC/bin/sh -c #(nop) COPY file:d5038a27fbcfa2f7c3a5e92ffdbfda1676a7a65ecb52a9b377a6041a59e1c1d7 in /usr/local/bin/
2017-11-13 16:21:30 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2017-11-13 16:21:30 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2017-11-13 16:21:31 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2017-11-13 16:21:31 UTC/bin/sh -c #(nop) CMD ["postgres"]
2017-11-21 20:01:15 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2017-11-29 19:58:43 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=0.7.1
2017-11-29 19:59:04 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:05 UTC/bin/sh -c #(nop) COPY file:05e1e974efac04e17e609ae261b4dfbc63bc06af0b66dccc1180e456d1b6f086 in .
2017-11-29 19:59:06 UTC/bin/sh -c chmod +x backup_init.sh
2017-11-29 19:59:06 UTC/bin/sh -c #(nop) ENTRYPOINT ["./backup_init.sh"]
2017-11-29 19:59:06 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.