2019-02-14 16:13:05 UTC
21 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_SHA25638250adc69a1e8613fb926c894cda1d01031391a03648894b9a6e13ff354a530
PG_VERSION9.6.11
TIMESCALEDB_VERSION1.2.1
[#000] sha256:cd784148e3483c2c86c50a48e535302ab0288bebd587accf40b714fffd0646b3 - 10.02% (2.1 MB)
[#001] sha256:67451ade031c2a262548d2f16ca8ff58b15246121027a55cbc32fdedc3bf5b61 - 0.0% (146 Bytes)
[#002] sha256:a9990a72e3ae4357d69590623f56a5c2d580ee975f4d3cdfb73c930272da2cfd - 0.0% (115 Bytes)
[#003] sha256:d8f29e50b6b4e6cab470d58ea538a4380157fc02644da51dc988ae4521b0391a - 58.66% (12.3 MB)
[#004] sha256:c4e39b34dab0704f4b19bcfc9f1cc6d6f580f94c0a263849158d95c95010a6cd - 0.03% (6.91 KB)
[#005] sha256:3df121438f834bddcee60bb9af63f81b14a7ac36d8977a943841977cd6b60d60 - 0.0% (129 Bytes)
[#006] sha256:95b6b8ce0317beebabeef6daea0e531cde9772a0f799ebf5af2fb561d9265064 - 0.0% (169 Bytes)
[#007] sha256:5459f85909f3517259ee26ce6604189deb12481eb4bc2881a17c62794706b1cd - 0.01% (2.31 KB)
[#008] sha256:f7fb7f52186e1447e643fcb738f112e45629b8883d9ed664fe35d1add6e96e9d - 0.0% (121 Bytes)
[#009] sha256:8c631dfabe26e9112c002d5f9ee0fa5c2edec7c12fa8869f8ae8418520e3769e - 0.01% (1.66 KB)
[#010] sha256:2bcbaef75853fc872326d22daa18d27b2a408558aa036d04f5478a109678fa0d - 19.54% (4.11 MB)
[#011] sha256:47a17e0058bce9afabad6209d914836f88ce7457f5117b87ac074f0965e1a396 - 7.97% (1.67 MB)
[#012] sha256:dc57cd00f8a3451ea8182101abdc15548fb66e9e19c7e8bf3a79908db6177642 - 0.72% (155 KB)
[#013] sha256:9c951fef1c85e0cb985072b3f6ed125f2772e571b4cc47fa16d1e6d3aa76356d - 3.04% (653 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:09:50 UTC/bin/sh -c #(nop) ENV PG_MAJOR=9.6
2018-12-21 05:09:51 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.6.11
2018-12-21 05:09:51 UTC/bin/sh -c #(nop) ENV PG_SHA256=38250adc69a1e8613fb926c894cda1d01031391a03648894b9a6e13ff354a530
2018-12-21 05:12:32 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-12-21 05:12:33 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-12-21 05:12:34 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:12:34 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-12-21 05:12:35 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:12:35 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2019-01-11 00:31:22 UTC/bin/sh -c #(nop) COPY file:7268f113a051af65206d1d53f47df8864cf0bd54b22d4b146818983322dd27b2 in /usr/local/bin/
2019-01-11 00:31:23 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2019-01-11 00:31:23 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2019-01-11 00:31:24 UTC/bin/sh -c #(nop) EXPOSE 5432
2019-01-11 00:31:24 UTC/bin/sh -c #(nop) CMD ["postgres"]
2019-01-28 19:18:18 UTC/bin/sh -c #(nop) ARG OSS_ONLY
2019-01-28 19:18:18 UTC/bin/sh -c #(nop) MAINTAINER Timescale https://www.timescale.com
2019-02-11 02:45:59 UTC/bin/sh -c #(nop) ENV TIMESCALEDB_VERSION=1.2.1
2019-02-14 15:59:14 UTC/bin/sh -c #(nop) COPY multi:ca566707f0d2ec86a3230b824b536f19e9d7bb11a54d62e32daf42d0567c8e3c in /docker-entrypoint-initdb.d/
2019-02-14 15:59:14 UTC/bin/sh -c #(nop) COPY multi:ba57b4020248255a637910a3e6bc097d60746fef6a75c0d4c9896237f384a2c3 in /usr/local/bin/
2019-02-14 16:12:34 UTC/bin/sh -c #(nop) COPY multi:b583815be24d5030fbf57c192955c10ee743abed219df74f26d9b4b9bd79f543 in /usr/local/lib/postgresql/
2019-02-14 16:12:36 UTC/bin/sh -c #(nop) COPY multi:5cc5e9aeedbda7583f04c2ee3ed247d71e81659cbb107ac1befdb9543aa8b417 in /usr/local/share/postgresql/extension/
2019-02-14 16:13:05 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 -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.