2018-05-04 17:50:34 UTC
14.6 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_SHA2566ea268780ee35e88c65cdb0af7955ad90b7d0ef34573867f223f14e43467931a
PG_VERSION10.3
TIMESCALEDB_VERSION0.9.2
[#000] sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 - 13.47% (1.97 MB)
[#001] sha256:a503b44e1ce09191fd553fe4a22ab09d16dfd3164c7d0f59c7c1a54a85545fa9 - 0.0% (149 Bytes)
[#002] sha256:2117067130936383676d224fd32133e2e2e9be9847a8288271d021edede1e2b7 - 0.0% (115 Bytes)
[#003] sha256:ea28caf317dd0751f2c3b414d9fc9a6e0c16f870ce51256ab1f20945c4a5f523 - 84.06% (12.3 MB)
[#004] sha256:a9b37749335b4d31eb69b77b4b9eaa5dd2c0b321ae251a5188ac6ce4c2a80c54 - 0.05% (7.1 KB)
[#005] sha256:f7e94ebc5400c93d98e6938e463ffd98b58adf1e9115aff2110150c8d86de338 - 0.0% (129 Bytes)
[#006] sha256:77dd3a51253d6e36dc0ad3bf3fd566eda787dfd206483495cea81e696d4a0233 - 0.0% (171 Bytes)
[#007] sha256:633a37734b127dc003dcab1c1480169500436c5f61f741cb28d62dba30fab0fd - 0.01% (1.76 KB)
[#008] sha256:872e6b940bbba5b6b9ea54c71cfc2d18351ca136c227153ea448fdc8368eb7d3 - 0.0% (121 Bytes)
[#009] sha256:d7f24f1b26709eb0719b144a7a77c353483007c2478e444a398bc154d29fce69 - 2.4% (359 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-03-02 22:05:07 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.3
2018-03-02 22:05:08 UTC/bin/sh -c #(nop) ENV PG_SHA256=6ea268780ee35e88c65cdb0af7955ad90b7d0ef34573867f223f14e43467931a
2018-03-02 22:07:29 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-03-02 22:07:30 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-03-02 22:07:31 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-03-02 22:07:31 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-03-02 22:07:32 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-03-02 22:07:32 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-03-02 22:07:32 UTC/bin/sh -c #(nop) COPY file:46ab8d38fd55d223afd8acf3c85c0aa94676776fce8f7fe7ac826a3153cb618f in /usr/local/bin/
2018-03-02 22:07:33 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-03-02 22:07:33 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-03-02 22:07:33 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-03-02 22:07:34 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-03-26 19:21:15 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2018-05-04 17:50:19 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=0.9.2
2018-05-04 17:50:34 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.