Namespace
library
Image / Tag
postgres:10.1-alpine
Content Digest
sha256:d6150452877361e26d0fd178d278af8f80d59c75cbb5c2413cfb4fdb5ed4f750
Details
Created

2017-11-16 15:00:57 UTC

Size

14.6 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

PG_VERSION

10.1


Layers

[#000] sha256:ffe4428ef008913a7ec63449e4ad3aa536b26103943146a302591dfceb157d2f - 13.38% (1.95 MB)

[#001] sha256:5f4fe786260f2bd2710289e7c9487b423cb252a691fa501759b0768516122869 - 0.0% (176 Bytes)

[#002] sha256:d70a58c1149f88ed96eb8e2fd8c5f4ac797a01539a650a011fd70525f439c090 - 0.0% (150 Bytes)

[#003] sha256:f51753dfc14b286d27f6635b81e06f61b33883b573f797fef42c3af1e09d7242 - 0.0% (115 Bytes)

[#004] sha256:f66bbeed0e77e6190b6905ae8981d91d3259d69664b08d06a648370e3f73352f - 86.55% (12.6 MB)

[#005] sha256:c8957ac3f7e7727c63c8e04a57704227dcb925629653d806782c7d79eb9002be - 0.05% (7.1 KB)

[#006] sha256:718ce9383375bd01f4d0c2c3249788b47d488020b6a246e196baa0ef9433e52b - 0.0% (152 Bytes)

[#007] sha256:b7792d302e22bbe6f4f1cddada75e6c107357586cdca48e51a3531aa108b8afb - 0.0% (171 Bytes)

[#008] sha256:7f4b93ee3f1105625eda47b90035021d14d10ea13dfe29acea0e77c2819b3e5e - 0.01% (1.76 KB)

[#009] sha256:a0b5e93c826c2ee8de888fc82f484f4dc3a14970a6b432fa2ee45f3c0b1c6f03 - 0.0% (121 Bytes)


History
2017-10-25 23:32:08 UTC

/bin/sh -c #(nop) ADD file:4a952fc4b81d50b342e26a818dac48a148a4d5eddb878219650e579a5c9faeaa in /

2017-10-25 23:32:08 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:32:08 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2017-10-26 14:02:56 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"

2017-10-26 14:02:56 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2017-10-26 14:02:57 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2017-10-26 14:02:57 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2017-11-14 15:05:09 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.1

2017-11-14 15:05:09 UTC

/bin/sh -c #(nop) ENV PG_SHA256=3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

2017-11-14 15:08:09 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

2017-11-14 15:08:10 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2017-11-14 15:08:10 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2017-11-14 15:08:10 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2017-11-14 15:08:11 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)

2017-11-14 15:08:11 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2017-11-16 15:00:55 UTC

/bin/sh -c #(nop) COPY file:46ab8d38fd55d223afd8acf3c85c0aa94676776fce8f7fe7ac826a3153cb618f in /usr/local/bin/

2017-11-16 15:00:56 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2017-11-16 15:00:56 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2017-11-16 15:00:56 UTC

/bin/sh -c #(nop) EXPOSE 5432/tcp

2017-11-16 15:00:57 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2018-01-10 04:26:17 UTC

Size

13.7 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

PG_VERSION

10.1


Layers

[#000] sha256:605ce1bd3f3164f2949a30501cc596f52a72de05da1306ab360055f0d7130c32 - 13.87% (1.9 MB)

[#001] sha256:8d2abe6927109e1cae97793d9611c3ea40e70f2a95ab5e9fd0a6f1f06470c567 - 0.0% (148 Bytes)

[#002] sha256:a18eca08010256ecf2b5a27cbde1c4407192a60fc3e8c2385947318423ad28e2 - 0.0% (115 Bytes)

[#003] sha256:91cfdfa52a99a8002e7ea9a94eb514d4d213e22d23cc29a615822cbb1bb3893a - 86.06% (11.8 MB)

[#004] sha256:452cbf05af6d21a73bbe3e64d93c44275c12c5840efff54f100a5ab6c6448194 - 0.05% (7.09 KB)

[#005] sha256:4a256b03e5bd76f4d30f1d7691556805f16c8bd88a5e77a512a1969140b91604 - 0.0% (152 Bytes)

[#006] sha256:379c8298095dbe066f6a9e041a1d70cfb326da6ccfa9185756ece64ba0a32a4b - 0.0% (170 Bytes)

[#007] sha256:12207b3814c9214ac0d8895861d46b9f83ffa3376e60c3659049160659dcb4c2 - 0.01% (1.76 KB)

[#008] sha256:373a2b3fdfa18cb76ef2462a008f4473ea77a417c49acfa2282e2731b120d9b4 - 0.0% (121 Bytes)


History
2018-01-09 21:10:38 UTC

/bin/sh -c #(nop) ADD file:6edc55fb54ec9fc3658c8f5176a70e792103a516154442f94fed8e0290e4960e in /

2018-01-09 21:10:38 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2018-01-10 04:22:59 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-01-10 04:22:59 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2018-01-10 04:23:01 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2018-01-10 04:23:01 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2018-01-10 04:23:01 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.1

2018-01-10 04:23:02 UTC

/bin/sh -c #(nop) ENV PG_SHA256=3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

2018-01-10 04:26:12 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-01-10 04:26:13 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2018-01-10 04:26:14 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2018-01-10 04:26:14 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2018-01-10 04:26:15 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-01-10 04:26:15 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2018-01-10 04:26:15 UTC

/bin/sh -c #(nop) COPY file:46ab8d38fd55d223afd8acf3c85c0aa94676776fce8f7fe7ac826a3153cb618f in /usr/local/bin/

2018-01-10 04:26:16 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2018-01-10 04:26:16 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2018-01-10 04:26:16 UTC

/bin/sh -c #(nop) EXPOSE 5432/tcp

2018-01-10 04:26:17 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2017-11-16 00:36:19 UTC

Size

13.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

PG_VERSION

10.1


Layers

[#000] sha256:0864efeeb5cb8dca4eb53e5d6fd38486daee80fa326fe36d1ad254f8fa6bb310 - 13.96% (1.87 MB)

[#001] sha256:3cda69762aee1588fa82aeabf1af6d6ad24f737cce1451fab2e0199849b1e12e - 0.0% (170 Bytes)

[#002] sha256:91ee21f323722b4de6199fd75d7ac98af881df8745fa40ee9d05ac50b65bb0ee - 0.0% (179 Bytes)

[#003] sha256:a08471e694908aa21aeb260899b548eb79de839a3b64892df07cc76799410bab - 0.0% (149 Bytes)

[#004] sha256:8a1ff89a8de664ab1ce8568a740713f9a837299cf8d01447f864977ee555840c - 85.97% (11.5 MB)

[#005] sha256:a950f198523fc3b70204b52195509962e6748f4f58fad67766529f82f78e11ae - 0.05% (7.1 KB)

[#006] sha256:8cc32db7b103d878fb5d78fda2583981a48d41fde041280ad6008779827a31da - 0.0% (184 Bytes)

[#007] sha256:9c034b568bdf4945ea7a9437a5c6d905fe9bd787249bb852252b33fbd38ae885 - 0.0% (201 Bytes)

[#008] sha256:03d6b624f06dc9916a4113d6c49c31b54b76497dd95999c24eee41ebfb6e555d - 0.01% (1.76 KB)

[#009] sha256:7aa371d66fd8904ddc4f021223c3900dd75952a869b29d6e33051d08e4b0fc41 - 0.0% (121 Bytes)


History
2017-10-25 23:28:35 UTC

/bin/sh -c #(nop) ADD file:009348222efb3c4ca2e53c387fb34c488679ca07db39525a6c5cc214e46abffd in /

2017-10-25 23:28:36 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:28:36 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2017-10-26 05:28:00 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"

2017-10-26 05:28:01 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2017-10-26 05:28:01 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2017-10-26 05:28:02 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2017-11-14 00:36:18 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.1

2017-11-14 00:36:18 UTC

/bin/sh -c #(nop) ENV PG_SHA256=3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

2017-11-14 00:37:58 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

2017-11-14 00:37:59 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2017-11-14 00:38:00 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2017-11-14 00:38:00 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2017-11-14 00:38:01 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)

2017-11-14 00:38:01 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2017-11-16 00:36:18 UTC

/bin/sh -c #(nop) COPY file:46ab8d38fd55d223afd8acf3c85c0aa94676776fce8f7fe7ac826a3153cb618f in /usr/local/bin/

2017-11-16 00:36:19 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2017-11-16 00:36:19 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2017-11-16 00:36:19 UTC

/bin/sh -c #(nop) EXPOSE 5432/tcp

2017-11-16 00:36:19 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2017-11-16 15:21:43 UTC

Size

13 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

PG_VERSION

10.1


Layers

[#000] sha256:bb473f0ebc12fde1bd45c1bd3c46f2d3aab367b1b7739464771455b9972f7894 - 14.1% (1.83 MB)

[#001] sha256:75ff6b7ff3a208b8399e701e7ea1b7edbdc654c8c60d33c6f09a7803e2dda776 - 0.0% (176 Bytes)

[#002] sha256:4f9279e12cd5e4d64ecccdaa1e2c84905721462be29e276e033e82dc8e9f9618 - 0.0% (148 Bytes)

[#003] sha256:251fba6008fdbbfdbed7eb759d124fa5fb44d25bc358bba815e480506378d3fc - 0.0% (115 Bytes)

[#004] sha256:b1e449b574d4977f1570de6ae66b30a7c92f15a1c9f8400ee95d376a81c8295c - 85.83% (11.1 MB)

[#005] sha256:459c01fccfd4e472bfb19d74272b713b7e388311db5e1def5a7a14981b3267f6 - 0.05% (7.09 KB)

[#006] sha256:487ae336bd6115adb35f0b5849a6a20a41bc91b4f3ca5a970bf4fbb8700b6dfb - 0.0% (154 Bytes)

[#007] sha256:d5b1178234700be6e9747d2bf04e3ffd432a5a2b71f88d817beb36cf3d2c2033 - 0.0% (169 Bytes)

[#008] sha256:8e5ae31dfbeb08b3b3bb86b37a07ed2cb70a5668b5bd938ff49fcf69aef09d60 - 0.01% (1.76 KB)

[#009] sha256:11a571bc6c4200383fc65971aaeebf1a79c8cecf6e0b3bcffd0515247ba2ba55 - 0.0% (121 Bytes)


History
2017-10-25 23:28:58 UTC

/bin/sh -c #(nop) ADD file:45b5d3b8d5490ba7edfca2cf6f54cdcf49c772b0b3a2302ce69a7af061007aa4 in /

2017-10-25 23:28:59 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:28:59 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2017-10-26 14:21:06 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"

2017-10-26 14:21:07 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2017-10-26 14:21:08 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2017-10-26 14:21:09 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2017-11-14 15:51:31 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.1

2017-11-14 15:51:31 UTC

/bin/sh -c #(nop) ENV PG_SHA256=3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

2017-11-14 15:55:37 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

2017-11-14 15:55:39 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2017-11-14 15:55:40 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2017-11-14 15:55:41 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2017-11-14 15:55:43 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)

2017-11-14 15:55:43 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2017-11-16 15:21:40 UTC

/bin/sh -c #(nop) COPY file:46ab8d38fd55d223afd8acf3c85c0aa94676776fce8f7fe7ac826a3153cb618f in /usr/local/bin/

2017-11-16 15:21:41 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2017-11-16 15:21:42 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2017-11-16 15:21:43 UTC

/bin/sh -c #(nop) EXPOSE 5432/tcp

2017-11-16 15:21:43 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2017-11-16 23:01:47 UTC

Size

13.7 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

PG_VERSION

10.1


Layers

[#000] sha256:1e52418956f7d2a8ea35e8e6e3318fd08e005b27457d77868c225e7433bbfa02 - 13.95% (1.92 MB)

[#001] sha256:acf472f4e5bb7956ac20bb343b304e1d3de1f79160c0d158cccbe25980022d50 - 0.0% (176 Bytes)

[#002] sha256:8c23c4fdb0ebc4f191045f6bf19cca7b80df9186efad68a3333b03e331280aab - 0.0% (180 Bytes)

[#003] sha256:da3f58b8ca892b95a961eeadd35dd139839ccce3879da6dd63ff0babcbbf9153 - 0.0% (149 Bytes)

[#004] sha256:8b8a0f54f9f085e42e42a9155f4c6fd6555866974b8bd2a2b15c667a0706b415 - 85.98% (11.8 MB)

[#005] sha256:e6bb3af609bb20533b2f0ec376d184d9363604b0d80fd2973c636399dc5a524a - 0.05% (7.1 KB)

[#006] sha256:311c4b26ee255d35a9fc9594dac3037ec1516ffd69d54cbc3169b1c7c25b96bf - 0.0% (184 Bytes)

[#007] sha256:0943f222a1a12fdd07c7a2e88cf838033b1cf10f41668cc950559853abc0cdf9 - 0.0% (202 Bytes)

[#008] sha256:1cf7c145ae9a84897ec54896f33dc04752ea8889a66637f71c67a95bab8e6a49 - 0.01% (1.76 KB)

[#009] sha256:96bcec5290d93f3cab7db3b6d85ec6219cb0439246c75821f9aeefee82043c84 - 0.0% (121 Bytes)


History
2017-10-25 23:28:47 UTC

/bin/sh -c #(nop) ADD file:e0be8616517d68cb80a2f9b74eb967cda22b9937bbcbe8b75b6153815a6f7761 in /

2017-10-25 23:28:48 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:28:50 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2017-10-26 22:01:37 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"

2017-10-26 22:01:40 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2017-10-26 22:01:44 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2017-10-26 22:01:46 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2017-11-15 21:39:43 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.1

2017-11-15 21:39:46 UTC

/bin/sh -c #(nop) ENV PG_SHA256=3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

2017-11-15 21:44:15 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

2017-11-15 21:44:26 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2017-11-15 21:44:31 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2017-11-15 21:44:33 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2017-11-15 21:44: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)

2017-11-15 21:44:39 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2017-11-16 23:01:38 UTC

/bin/sh -c #(nop) COPY file:46ab8d38fd55d223afd8acf3c85c0aa94676776fce8f7fe7ac826a3153cb618f in /usr/local/bin/

2017-11-16 23:01:42 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2017-11-16 23:01:44 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2017-11-16 23:01:45 UTC

/bin/sh -c #(nop) EXPOSE 5432/tcp

2017-11-16 23:01:47 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Details
Created

2017-11-16 10:25:46 UTC

Size

14.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

PG_VERSION

10.1


Layers

[#000] sha256:d45fd9d3c4f188ab1f3a4bf6a9f5202b3f1577dbb998f5f28e82d192e0c1f0e7 - 14.01% (1.97 MB)

[#001] sha256:0e5978b6b34b3e943e0fd25dfb50991c0bad82a986cfdaa91c4de756431ba679 - 0.0% (176 Bytes)

[#002] sha256:d64021f8919c5741e8db38e29e920f78d5e229b9451ca0fcae9c682606db203b - 0.0% (149 Bytes)

[#003] sha256:958cf18dd66d6c5b0994b62c5056998a9c4d47f8ef8baa2516f779083812eeb3 - 0.0% (115 Bytes)

[#004] sha256:9280eb3befff97803958ae4f6cd6adc77de65b376961b82e854bbbdef3cc78f3 - 85.92% (12.1 MB)

[#005] sha256:130267153c8f2d0783a8ed7f548acd008387b699521db86ec21458b4f915da1d - 0.05% (7.1 KB)

[#006] sha256:301f375a1bb76e89365d0525b846ae205977484de93d78d9a8202652c49ca866 - 0.0% (153 Bytes)

[#007] sha256:015d18cbf8839aa974818ac9f64908d5cfe4ad1c74a2d0c8d61543292f7ed181 - 0.0% (171 Bytes)

[#008] sha256:738ff6b64f12399420bcf3fecdef237374b2741e2b9346a4b32e1be5246d1dcf - 0.01% (1.76 KB)

[#009] sha256:c2f9a7586dd533bad31c72c0acd2fed0563a6eb57f1fb580038ad89be88c1848 - 0.0% (121 Bytes)


History
2017-10-25 23:28:40 UTC

/bin/sh -c #(nop) ADD file:6fbdff4b4c08600e192f5da9b67a02c58759237fb40525d70712104c80c34c48 in /

2017-10-25 23:28:40 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2017-10-25 23:28:40 UTC

/bin/sh -c #(nop) CMD ["/bin/sh"]

2017-10-26 09:25:35 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"

2017-10-26 09:25:36 UTC

/bin/sh -c #(nop) ENV LANG=en_US.utf8

2017-10-26 09:25:36 UTC

/bin/sh -c mkdir /docker-entrypoint-initdb.d

2017-10-26 09:25:36 UTC

/bin/sh -c #(nop) ENV PG_MAJOR=10

2017-11-14 10:36:10 UTC

/bin/sh -c #(nop) ENV PG_VERSION=10.1

2017-11-14 10:36:10 UTC

/bin/sh -c #(nop) ENV PG_SHA256=3ccb4e25fe7a7ea6308dea103cac202963e6b746697366d72ec2900449a5e713

2017-11-14 10:38:53 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

2017-11-14 10:38:54 UTC

/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample

2017-11-14 10:38:55 UTC

/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql

2017-11-14 10:38:55 UTC

/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data

2017-11-14 10:38:56 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)

2017-11-14 10:38:56 UTC

/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]

2017-11-16 10:25:45 UTC

/bin/sh -c #(nop) COPY file:46ab8d38fd55d223afd8acf3c85c0aa94676776fce8f7fe7ac826a3153cb618f in /usr/local/bin/

2017-11-16 10:25:45 UTC

/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat

2017-11-16 10:25:46 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2017-11-16 10:25:46 UTC

/bin/sh -c #(nop) EXPOSE 5432/tcp

2017-11-16 10:25:46 UTC

/bin/sh -c #(nop) CMD ["postgres"]

Danger Zone
Delete Tag

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.

Delete