2017-07-13 13:07:08 UTC
14.6 MB
en_US.utf8
PATH/usr/lib/postgresql/9.6/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2561645b3736901f6d854e695a937389e68ff2066ce0cde9d73919d6ab7c995b9c6
PG_VERSION9.6.3
TIMESCALEDB_VERSION0.2.0
[#000] sha256:c1c1ba809094891c97d8ca9f34817f54c72cfab868b6914d85f2a156a6ac26a9 - 12.89% (1.88 MB)
[#001] sha256:fd1744034969e19d36684321cd5a141cf8f2abdbb63e7ab151f0606535e7339e - 0.0% (142 Bytes)
[#002] sha256:1af4dd40170677e26346b1abfb9cfb09c5b81ee294c255273b2f3fbb949e2f9f - 0.0% (115 Bytes)
[#003] sha256:6ec2e42797a6b93c7847181e712daf97dce2ef4506f59bc43efd190d4f87f528 - 83.4% (12.1 MB)
[#004] sha256:898baa45c4d2fb8e4820086e2e34a5f4052caa86111f789df10aaefe14586e17 - 0.05% (6.89 KB)
[#005] sha256:2db1deb0e002102ca493aa86b20a70f26578d0031882d70248182f7dd089d028 - 0.0% (146 Bytes)
[#006] sha256:12bb68eabe584a725d9b91830c91c449ce847012875b9805bab1f1f3e30a882f - 0.0% (161 Bytes)
[#007] sha256:f6321695463e7d890489923f979bbf3632ef359e8cfd35d66eca3de7986af93d - 0.01% (1.75 KB)
[#008] sha256:cdaa304070a0293357e8b02698f636588f98c9f7991deff0901f1d97e232ce89 - 0.0% (121 Bytes)
[#009] sha256:9d4b8665bdcb0eefe0f1f5c3c793b9b9d9bf37240387ccea947d3e210aefcaf8 - 3.65% (544 KB)
/bin/sh -c #(nop) ADD file:df15515197b183747a0b7ccefd75973edc87fc7a5bce30fa10ae94e75928d25c in /
2017-05-25 23:32:38 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2017-06-08 19:56:06 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-08 19:56:07 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2017-06-08 19:56:08 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2017-06-08 19:56:09 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2017-06-08 19:56:10 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.3
2017-06-08 19:56:11 UTC/bin/sh -c #(nop) ENV PG_SHA256=1645b3736901f6d854e695a937389e68ff2066ce0cde9d73919d6ab7c995b9c6
2017-06-08 19:58: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 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-06-08 19:58:38 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2017-06-08 19:58:39 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2017-06-08 19:58:40 UTC/bin/sh -c #(nop) ENV PATH=/usr/lib/postgresql/9.6/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2017-06-08 19:58:41 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2017-06-08 19:58:42 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-06-08 19:58:43 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2017-06-08 19:58:44 UTC/bin/sh -c #(nop) COPY file:0db93797e962937881947161a43da7695835a2b6d5ad1184d0886e35249b5e39 in /usr/local/bin/
2017-06-08 19:58:46 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2017-06-08 19:58:47 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2017-06-08 19:58:48 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2017-06-08 19:58:49 UTC/bin/sh -c #(nop) CMD ["postgres"]
2017-06-18 13:41:11 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2017-07-13 13:06:45 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=0.2.0
2017-07-13 13:07:08 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 util-linux-dev && make -C /build/timescaledb install && 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
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.