2020-01-15 20:40:37 UTC
22.1 MB
en_US.utf8
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.6
PG_SHA2565c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7
PG_VERSION9.6.16
TIMESCALEDB_VERSION1.6.0
[#000] sha256:89d9c30c1d48bac627e5c6cb0d1ed1eec28e7dbdfbcc04712e4c79c0f83faf17 - 12.01% (2.66 MB)
[#001] sha256:66ddea140797e8e48dae29e9da5a02b5d5195ebd73c51f38e07d3ead76b85b1b - 0.0% (146 Bytes)
[#002] sha256:977cf4e465c190a6a927cb72015e4dd220ef24b295e54a2604c4a6264d77923e - 0.0% (115 Bytes)
[#003] sha256:bf767ccee4edb44938017aefe292363a829304094c479fedcfa7b8e67788b6dc - 50.6% (11.2 MB)
[#004] sha256:608d60dd3761a82e7c6ccb28dca75c147dc6667462f0b90b2e42b4e503856909 - 0.03% (6.99 KB)
[#005] sha256:3a4aae0181734de6acea00f70448b991e7367ba315c074b3e7d8311fe2ffeffd - 0.0% (128 Bytes)
[#006] sha256:1e4b8fd4dd20e3e0b9f6bf8165e263af6db9b9753b22f041c2a042fa6f9322cd - 0.0% (164 Bytes)
[#007] sha256:d475e12d3454712f6d7ff317eb1eebfd3e636e327f5e1839f3dddf4c379e2887 - 0.02% (3.75 KB)
[#008] sha256:f3c12e3fd90ddca66cedc46cdecd32ac92884d71c33e52dccc60607c89ca6ef9 - 0.0% (121 Bytes)
[#009] sha256:def1d4f565b969e2439512a4416d05a14cdda2299f88d9a3be2af9cb6eb8aa9f - 0.01% (1.92 KB)
[#010] sha256:df0036d07e90078c210c78bfbc50b936be6491ddb1d38f8e736e096530a811ff - 21.57% (4.77 MB)
[#011] sha256:28a26a84fe56ff6cfd1e27d0880a1f87afca348d52af39083314272ca5711061 - 4.41% (999 KB)
[#012] sha256:d7db90217b23d983963f5b66983c599b49bb86571c69d138bcbb8ff42dfcce46 - 0.37% (84.1 KB)
[#013] sha256:e4f303e65dfaf8707c650f8f65ac7905b5b4d33629601ba1d0e2dc6ecbc80a43 - 10.98% (2.43 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:32:30 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2019-11-18 22:36:01 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.16
2019-11-18 22:36:01 UTC/bin/sh -c #(nop) ENV PG_SHA256=5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7
2019-11-18 22:41:01 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 && 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
2019-11-18 22:41:02 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2019-11-18 22:41:03 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:41:03 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2019-11-18 22:41:05 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"
2019-11-18 22:41:05 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-12-04 00:26:28 UTC/bin/sh -c #(nop) COPY file:abc85c5ac9d748ac5df3a643ab618de050dd65e8ef159dbdcdfe1a720ab1142b in /usr/local/bin/
2019-12-04 00:26:28 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-12-04 00:26:28 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-12-04 00:26:29 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-12-04 00:26:29 UTC/bin/sh -c #(nop) CMD ["postgres"]
2020-01-15 20:16:21 UTC/bin/sh -c #(nop) ARG OSS_ONLY
2020-01-15 20:16:21 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2020-01-15 20:16:22 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=1.6.0
2020-01-15 20:16:22 UTC/bin/sh -c #(nop) COPY multi:1f02237aee593befc206fd22691188894b22bec5cfef070ed24a902a27a4e33c in /docker-entrypoint-initdb.d/
2020-01-15 20:40:09 UTC/bin/sh -c #(nop) COPY multi:ba319a6bf6f6f75f8f18ad9ba2cb3f2fb571fb36f49a26aea190326bde445601 in /usr/local/bin/
2020-01-15 20:40:10 UTC/bin/sh -c #(nop) COPY multi:6bdbadb9c0f8670a6cbb975514423b922e77c35ad507860f4a751e5b6dd918ba in /usr/local/lib/postgresql/
2020-01-15 20:40:11 UTC/bin/sh -c #(nop) COPY multi:fd08f4630bb76e0a2c5bc17fedab52d3743dcb9cdbbb49f7f79d087c23a6293f in /usr/local/share/postgresql/extension/
2020-01-15 20:40:37 UTC|1 OSS_ONLY= -DAPACHE_ONLY=1 /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.