2020-01-15 20:24:43 UTC
35.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_SHA2560d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09
PG_VERSION10.11
TIMESCALEDB_VERSION1.6.0
[#000] sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17 - 7.48% (2.66 MB)
[#001] sha256:66ddea140797e8e48dae29e9da5a02b5d5195ebd73c51f38e07d3ead76b85b1b - 0.0% (146 Bytes)
[#002] sha256:977cf4e465c190a6a927cb72015e4dd220ef24b295e54a2604c4a6264d77923e - 0.0% (115 Bytes)
[#003] sha256:15b4a8703e552af87b59f8bc6d6378a0537f65b5471c68e066b6d8ba7b78ecc4 - 67.72% (24.1 MB)
[#004] sha256:5487f7aed295ed070c758357a943d12e7caa911233eab95633ebf66947a29881 - 0.02% (7.18 KB)
[#005] sha256:b1c58b3f7f0ffd36210956171c59a7645542321eb60cea21478b42080bca2488 - 0.0% (130 Bytes)
[#006] sha256:150dedbc3a53327a26ec50c2ff4ecb34d7b935b6a2cfc2cbfaa93c4c8dab6624 - 0.0% (164 Bytes)
[#007] sha256:6644c31649bee828ebd5c95de1f61e53514cf3ba9100257831c3b57b758c81e0 - 0.01% (3.75 KB)
[#008] sha256:de674ed476b764549c16ade3e98cbb5df6496f02194baeefb1df66e14b537070 - 0.0% (121 Bytes)
[#009] sha256:0f9f83a7facf59b7582b0ab8fd16c2c44d086b97af8260752e6fce1344bfab7b - 0.01% (1.92 KB)
[#010] sha256:43e3f2a34377fb0774567f958b3226939aa2ec77d30b421510af7382d009fa90 - 13.43% (4.77 MB)
[#011] sha256:2abb2c69f35762ae343750f94f47f7b7130a92e7931b44682dc4f0d249dbc4ef - 3.9% (1.39 MB)
[#012] sha256:c63fb14b37baa7fe7173ef7963ee9f05370fdc694dd745c0e0b7b99c61a3e055 - 0.23% (84.1 KB)
[#013] sha256:212c6e09e6ffad37e4b528a360dbbe273a51e00d4c996c14fc727aa869d9d831 - 7.2% (2.56 MB)
/bin/sh -c #(nop) ADD file:fe1f09249227e2da2089afb4d07e16cbf832eeb804120074acd2b8192876cd28 in /
2019-10-21 17:21:42 UTC/bin/sh -c #(nop) CMD ["/bin/sh"]
2019-10-21 19:17:31 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"
2019-10-21 19:17:31 UTC/bin/sh -c #(nop) ENV LANG=en_US.utf8
2019-10-21 19:17:33 UTC/bin/sh -c mkdir /docker-entrypoint-initdb.d
2019-10-21 19:27:41 UTC/bin/sh -c #(nop) ENV PG_MAJOR=10
2019-11-18 22:29:35 UTC/bin/sh -c #(nop) ENV PG_VERSION=10.11
2019-11-18 22:29:35 UTC/bin/sh -c #(nop) ENV PG_SHA256=0d5d14ff6b075655f4421038fbde3a5d7b418c26a249a187a4175600d7aecc09
2019-11-18 22:34:49 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 linux-headers 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
2019-11-18 22:34:51 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-11-18 22:34:52 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2019-11-18 22:34:52 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-11-18 22:34:53 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-11-18 22:34:53 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-12-04 00:26:18 UTC/bin/sh -c #(nop) COPY file:74700c51dbcbbad39fbd303750c2ac04ac10f59a73a55171e1fd0dbae6c2f311 in /usr/local/bin/
2019-12-04 00:26:19 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-12-04 00:26:19 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-12-04 00:26:19 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-12-04 00:26:19 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-01-15 20:24:04 UTC/bin/sh -c #(nop) ARG OSS_ONLY
2020-01-15 20:24:04 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2020-01-15 20:24:04 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=1.6.0
2020-01-15 20:24:05 UTC/bin/sh -c #(nop) COPY multi:1f02237aee593befc206fd22691188894b22bec5cfef070ed24a902a27a4e33c in /docker-entrypoint-initdb.d/
2020-01-15 20:24:05 UTC/bin/sh -c #(nop) COPY multi:ecbd744e81704a148cc1d1d0d731d75f69400174054ed07e0c9cd66123e8c1bd in /usr/local/bin/
2020-01-15 20:24:07 UTC/bin/sh -c #(nop) COPY multi:13e9b0dd12074d27abc3f2b252b1a2d6b68485c0424ab6b9ceb2423a6b74a32b in /usr/local/lib/postgresql/
2020-01-15 20:24:08 UTC/bin/sh -c #(nop) COPY multi:cd34d7f0ebb0b4a4c980f9a76fe724a8328fb2e8e15c193729711159d0af9625 in /usr/local/share/postgresql/extension/
2020-01-15 20:24:43 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 -DREGRESS_CHECKS=OFF -DPROJECT_INSTALL_METHOD="docker"${OSS_ONLY} && cd build && make install && cd ~ && if [ "${OSS_ONLY}" != "" ]; then rm -f $(pg_config --pkglibdir)/timescaledb-tsl-*.so; fi && 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.