2018-07-12 20:07:54 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_MAJOR10
PG_SHA2561b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048
PG_VERSION10.4
TIMESCALEDB_VERSION0.10.1
[#000] sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 - 13.44% (1.97 MB)
[#001] sha256:a503b44e1ce09191fd553fe4a22ab09d16dfd3164c7d0f59c7c1a54a85545fa9 - 0.0% (149 Bytes)
[#002] sha256:2117067130936383676d224fd32133e2e2e9be9847a8288271d021edede1e2b7 - 0.0% (115 Bytes)
[#003] sha256:d3a8a0499bf1ee8bb87c96c3603501c9d8cdcf705c1ebc8289f912bbe64393f0 - 83.85% (12.3 MB)
[#004] sha256:166936d719c77e625f9b3fca85a8899b9887880a023f89c94d9b685085f99322 - 0.05% (7.1 KB)
[#005] sha256:ed55fa9c42d9c1132c7998ad2b2942a59452ef73467964403cfce5304a1b32f9 - 0.0% (130 Bytes)
[#006] sha256:de28b15de232cc5eac7e59e4413cdd5b864512ba0e0cabe84d3f6337071f8d58 - 0.0% (171 Bytes)
[#007] sha256:9bc6ee2018c897450e91f70f3ca4f6ed6fa71a580790076a8118ed81204a76e1 - 0.01% (2.18 KB)
[#008] sha256:e86ae0bb5c53a1124dfbd54ab615fe3ded564097ccf5e2c683eec17229a77f90 - 0.0% (121 Bytes)
[#009] sha256:d02e47c6a0d8664f80ee04145d25dc270018bf991451163a9b8aabed163efcb8 - 2.65% (398 KB)
/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-02-18 02:31:32 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2018-05-14 23:29:10 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.4
2018-05-14 23:29:10 UTC/bin/sh -c #(nop) ENV PG_SHA256=1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048
2018-05-14 23:31: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-14 23:31:38 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-05-14 23:31:39 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-05-14 23:31:39 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-05-14 23:31:40 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-14 23:31:40 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-06-27 00:03:37 UTC/bin/sh -c #(nop) COPY file:ea83254240307acb41cff4ba67980cb25f52871869af6e6c49a729ba283f82ed in /usr/local/bin/
2018-06-27 00:03:38 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-06-27 00:03:38 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-06-27 00:03:38 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-06-27 00:03:39 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-06-27 16:01:57 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2018-07-12 20:07:39 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=0.10.1
2018-07-12 20:07:54 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
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.