2019-02-14 16:00:41 UTC
33.5 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_SHA25668a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
PG_VERSION10.6
TIMESCALEDB_VERSION1.2.1
[#000] sha256:cd784148e3483c2c86c50a48e535302ab0288bebd587accf40b714fffd0646b3 - 6.27% (2.1 MB)
[#001] sha256:67451ade031c2a262548d2f16ca8ff58b15246121027a55cbc32fdedc3bf5b61 - 0.0% (146 Bytes)
[#002] sha256:a9990a72e3ae4357d69590623f56a5c2d580ee975f4d3cdfb73c930272da2cfd - 0.0% (115 Bytes)
[#003] sha256:afd7f1c75cf90f35a849a3805f6df06f980e3bfc13369f7b60046c79f82ec60c - 73.92% (24.8 MB)
[#004] sha256:708d7481af88d2b629c493677ee9d4e68ef5b02f9942c4a9892add368c59665f - 0.02% (7.1 KB)
[#005] sha256:2fa3627e06f9627b32791ceda91fe24b751cbef9d50dd1cbe836dd5808356013 - 0.0% (129 Bytes)
[#006] sha256:d1bdf7f140508399ead0b8335598c6da457160353bc3d246c27b751bf9f6561f - 0.0% (169 Bytes)
[#007] sha256:8af607327f247a131e6d8b8375c6bec5b65341f33d32abaf4e3920820886072c - 0.01% (2.32 KB)
[#008] sha256:b877b86e403e4ecb2b9792fc37304595a07f8a38e2453886e855e6d5f68dae43 - 0.0% (121 Bytes)
[#009] sha256:edc9b56bcf4c291e018e86dc5c908d913a9a4823d2c74a2d1773a78e0ef3113d - 0.0% (1.66 KB)
[#010] sha256:8655f3314215ae9373f41e7547e462eb6991335502ecc134b588354fb5a36aab - 12.24% (4.11 MB)
[#011] sha256:fc0e1094ab3309cbf65ead17819419ff168e0ae03937ba0cb963eb731109a15f - 5.09% (1.71 MB)
[#012] sha256:11d267ca4de5395f67d1af2214b7dcf24f7e384ccddc39e2120dac8961ffcb7f - 0.45% (155 KB)
[#013] sha256:aef6a950b11dd05985d98382712496ecc4ba85f011291b5afe3b32d8fdb07813 - 1.99% (684 KB)
/bin/sh -c #(nop) ADD file:2ff00caea4e83dfade726ca47e3c795a1e9acb8ac24e392785c474ecf9a621f2 in /
2018-12-21 00:21:30 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2018-12-21 05:03: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-12-21 05:03:30 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2018-12-21 05:03:31 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2018-12-21 05:06:46 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2018-12-21 05:06:46 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.6
2018-12-21 05:06:46 UTC/bin/sh -c #(nop) ENV PG_SHA256=68a8276f08bda8fbefe562faaf8831cb20664a7a1d3ffdbbcc5b83e08637624b
2018-12-21 05:09:35 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 icu-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 --with-icu && 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-12-21 05:09:36 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-12-21 05:09:36 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-12-21 05:09:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-12-21 05:09:37 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-12-21 05:09:37 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-01-11 00:31:11 UTC/bin/sh -c #(nop) COPY file:06aacea0082744225fdd508b7ef4d5280ad1b35ec665f4399894e8fd2cfd37ad in /usr/local/bin/
2019-01-11 00:31:12 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-01-11 00:31:12 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-01-11 00:31:12 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-01-11 00:31:13 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-01-28 19:14:22 UTC/bin/sh -c #(nop) ARG OSS_ONLY
2019-01-28 19:14:22 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2019-02-11 02:50:32 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=1.2.1
2019-02-14 16:00:06 UTC/bin/sh -c #(nop) COPY multi:ca566707f0d2ec86a3230b824b536f19e9d7bb11a54d62e32daf42d0567c8e3c in /docker-entrypoint-initdb.d/
2019-02-14 16:00:07 UTC/bin/sh -c #(nop) COPY multi:ba57b4020248255a637910a3e6bc097d60746fef6a75c0d4c9896237f384a2c3 in /usr/local/bin/
2019-02-14 16:00:09 UTC/bin/sh -c #(nop) COPY multi:1983be228911da29c962605c003b3486e0ff8890787b49d38bed3975622bd143 in /usr/local/lib/postgresql/
2019-02-14 16:00:11 UTC/bin/sh -c #(nop) COPY multi:5cc5e9aeedbda7583f04c2ee3ed247d71e81659cbb107ac1befdb9543aa8b417 in /usr/local/share/postgresql/extension/
2019-02-14 16:00:41 UTC/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates git openssl openssl-dev tar && mkdir -p /build/ && git clone https://github.com/timescale/timescaledb /build/timescaledb && apk add --no-cache --virtual .build-deps coreutils dpkg-dev dpkg gcc libc-dev make cmake util-linux-dev && cd /build/timescaledb && rm -fr build && git checkout ${TIMESCALEDB_VERSION} && ./bootstrap -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && 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.