Namespace
library
Image / Tag
postgres:11-rc1-alpine
Content Digest
sha256:6298b56153c54d7c33b91e3e13b7b263e6a50cc9a6f89ed9d96cef8a196249aa
Details
Created

2018-10-13 12:10:45 UTC

Size

27.9 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

11

PG_SHA256

608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

PG_VERSION

11rc1


Layers

[#000] sha256:6b5c2e9bbf9885ccefe772a5a1f471d7da4315b7bf43ec3b4c014a65d04073b1 - 7.78% (2.17 MB)

[#001] sha256:e4d99e807699886f28203b3284584d7b093a61a84c40230f7094513bb2f84cd2 - 0.0% (175 Bytes)

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

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

[#004] sha256:2c7ee7cdf7b4f0f75a95bd194640c1fecf5a0b66e79f73f5668a5fdb5b181e63 - 92.19% (25.7 MB)

[#005] sha256:0ac78e987ca47bcaab32ad72ee4448649c9edbe65e45802a1ec93110c02dfcbb - 0.03% (7.31 KB)

[#006] sha256:6283c7fb18d5188d5ef7f4c4fd26357708c018ae91bc93700685743662a1f86c - 0.0% (129 Bytes)

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

[#008] sha256:1c68ec44530d92b71358d36cda84f6cc6fd28b5601bdf30a96ac6a9c3c70a1fc - 0.01% (2.16 KB)

[#009] sha256:63b4b4ae904c3d6621a9f290d507668b354269b7ea15d3ee2b2c70ae9e388bca - 0.0% (118 Bytes)


History
2018-09-12 10:38:54 UTC

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

2018-09-12 10:38:54 UTC

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

2018-09-12 10:38:54 UTC

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

2018-09-12 15:48:42 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-09-12 15:48:42 UTC

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

2018-09-12 15:48:43 UTC

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

2018-09-12 15:48:43 UTC

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

2018-10-13 12:07:31 UTC

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

2018-10-13 12:07:32 UTC

/bin/sh -c #(nop) ENV PG_SHA256=608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

2018-10-13 12:10:41 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-10-13 12:10:42 UTC

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

2018-10-13 12:10:43 UTC

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

2018-10-13 12:10:43 UTC

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

2018-10-13 12:10: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)

2018-10-13 12:10:44 UTC

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

2018-10-13 12:10:44 UTC

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

2018-10-13 12:10:45 UTC

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

2018-10-13 12:10:45 UTC

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

2018-10-13 12:10:45 UTC

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

2018-10-13 12:10:45 UTC

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

Details
Created

2018-10-12 18:43:26 UTC

Size

27.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

11

PG_SHA256

608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

PG_VERSION

11rc1


Layers

[#000] sha256:4fe2ade4980c2dda4fc95858ebb981489baec8c1e4bd282ab1c3560be8ff9bde - 7.76% (2.1 MB)

[#001] sha256:08cf8c12f47e64151935f8d8ea6529409384c9c0b753ef0df7df7711d35fe033 - 0.0% (147 Bytes)

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

[#003] sha256:869e30433fa09c867c6be44e6521f4a4de1f12d02a545a5069da80e0f80bf1dc - 92.2% (25 MB)

[#004] sha256:3cc5495ab74e3b5d5547ac287c307c5262d23e46ad5456182e3aeac6f8efb0e7 - 0.03% (7.31 KB)

[#005] sha256:2d46c3403698d7d98615e9f11ccdc4938fea21c0f35aae9d255493707a8d7f92 - 0.0% (129 Bytes)

[#006] sha256:6e28e7768276a9dedd0dc4a31758ade700210d73a971e6056b1c7f8503f10908 - 0.0% (170 Bytes)

[#007] sha256:7f7ea302e9ad12b50b1395fee2d63bebdf0269bc5a085e19937e4dcbbdfa1153 - 0.01% (2.16 KB)

[#008] sha256:0402243a1220f37ea181592ffd698aeef0792de5c3d8e5f28f96488c9cb19940 - 0.0% (121 Bytes)


History
2018-09-11 22:19:50 UTC

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

2018-09-11 22:19:50 UTC

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

2018-09-12 01:37:36 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-09-12 01:37:36 UTC

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

2018-09-12 01:37:37 UTC

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

2018-09-12 01:37:37 UTC

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

2018-10-12 18:39:44 UTC

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

2018-10-12 18:39:45 UTC

/bin/sh -c #(nop) ENV PG_SHA256=608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

2018-10-12 18:43:20 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-10-12 18:43:21 UTC

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

2018-10-12 18:43:22 UTC

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

2018-10-12 18:43:22 UTC

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

2018-10-12 18:43:23 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-10-12 18:43:24 UTC

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

2018-10-12 18:43:24 UTC

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

2018-10-12 18:43:25 UTC

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

2018-10-12 18:43:25 UTC

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

2018-10-12 18:43:26 UTC

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

2018-10-12 18:43:26 UTC

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

Details
Created

2018-10-13 09:07:30 UTC

Size

26.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

11

PG_SHA256

608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

PG_VERSION

11rc1


Layers

[#000] sha256:905674ea9d9448b14f15ae82e3c34138680bac1ef4fc29088aae8c9639b502fe - 7.84% (2.05 MB)

[#001] sha256:d91fe322e1690c8fb3f2b684fd85335d36a45e509b1568683232aede6d8a5e2b - 0.0% (175 Bytes)

[#002] sha256:7b459e79bf042631c40606931b68bfb5ce1b67919800be4cff8a8aedad3c24ba - 0.0% (178 Bytes)

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

[#004] sha256:2760f9ed3ec5af98f6d25ffee8c645d856a4253572a0c01bdbc866039f3efd90 - 92.12% (24 MB)

[#005] sha256:140223aabebaab8cf385c822e72e9e61c19e7cd77e610e44f5381983a8af5229 - 0.03% (7.32 KB)

[#006] sha256:24a2ec971933b12af4b2efff447d297afc6ed03781ad350e47ca8f38cb92035c - 0.0% (162 Bytes)

[#007] sha256:04196020c8755f467211d910f0c51e1f2f01b95f153b3b4bf7a6ae92a4a372a8 - 0.0% (202 Bytes)

[#008] sha256:da53decece7f0c7793bb8e01c8795686ae5279c88f2997ede5c16cd248dae608 - 0.01% (2.17 KB)

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


History
2018-09-12 07:49:40 UTC

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

2018-09-12 07:49:40 UTC

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

2018-09-12 07:49:40 UTC

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

2018-09-12 09:50:18 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-09-12 09:50:19 UTC

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

2018-09-12 09:50:24 UTC

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

2018-09-12 09:50:25 UTC

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

2018-10-13 08:21:42 UTC

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

2018-10-13 08:21:43 UTC

/bin/sh -c #(nop) ENV PG_SHA256=608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

2018-10-13 09:07:05 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-10-13 09:07:12 UTC

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

2018-10-13 09:07:17 UTC

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

2018-10-13 09:07:18 UTC

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

2018-10-13 09:07:22 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-10-13 09:07:22 UTC

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

2018-10-13 09:07:24 UTC

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

2018-10-13 09:07:28 UTC

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

2018-10-13 09:07:29 UTC

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

2018-10-13 09:07:30 UTC

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

2018-10-13 09:07:30 UTC

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

Details
Created

2018-10-13 10:13:46 UTC

Size

25.9 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

11

PG_SHA256

608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

PG_VERSION

11rc1


Layers

[#000] sha256:9941776d74c9129fd585b6f0434ba48bd3a7112d6736bc02e6d12f41153cab26 - 7.74% (2 MB)

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

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

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

[#004] sha256:cd925deffab9433c5b58ba53cf4ce7d855acd1dbfd63d6ad18f29768833c83ba - 92.22% (23.9 MB)

[#005] sha256:4c19d66584048ab22367ffbfcd664df3fa76db085c78d3ec332f9dc3a66d0e89 - 0.03% (7.31 KB)

[#006] sha256:e1e42f9dae1db63a4d2b52224ae053da16842acb6b66c71d3eaefa8df37ca9d6 - 0.0% (129 Bytes)

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

[#008] sha256:e29390eea47a9384ba1e159f0892677c590577f14890ed2dbb764c67a2759d9d - 0.01% (2.16 KB)

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


History
2018-09-12 08:42:24 UTC

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

2018-09-12 08:42:24 UTC

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

2018-09-12 08:42:25 UTC

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

2018-09-22 09:29:55 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-09-22 09:29:56 UTC

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

2018-09-22 09:29:58 UTC

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

2018-09-22 09:29:58 UTC

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

2018-10-13 10:05:31 UTC

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

2018-10-13 10:05:32 UTC

/bin/sh -c #(nop) ENV PG_SHA256=608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

2018-10-13 10:13:36 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-10-13 10:13:37 UTC

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

2018-10-13 10:13:39 UTC

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

2018-10-13 10:13:40 UTC

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

2018-10-13 10:13:41 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-10-13 10:13:42 UTC

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

2018-10-13 10:13:43 UTC

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

2018-10-13 10:13:44 UTC

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

2018-10-13 10:13:45 UTC

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

2018-10-13 10:13:46 UTC

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

2018-10-13 10:13:46 UTC

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

Details
Created

2018-10-13 10:46:24 UTC

Size

26.8 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

11

PG_SHA256

608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

PG_VERSION

11rc1


Layers

[#000] sha256:d6201b52ea9b908d4d6e950e2a79ded27be48979d6f0f63bd3a57b16b621f188 - 7.81% (2.09 MB)

[#001] sha256:7c5cedde51de1c8ffccd5521fd02fc1efc1cc44ece2d5dccb1e550a65366cd80 - 0.0% (177 Bytes)

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

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

[#004] sha256:62cb73ee21cb2e8090e47459c6f3c1b96959eb02e79069a6a6ffce2b71db7ef3 - 92.15% (24.7 MB)

[#005] sha256:215597a2eab8b73d1768c95104003ad755063d9ce7e6e22dfe6b3e0c62838030 - 0.03% (7.31 KB)

[#006] sha256:edd26cb252451a06aa5904f96cc4c156f6379dea5f5209463d2bf237ac8cade0 - 0.0% (161 Bytes)

[#007] sha256:408e1ebb0d6360e7e66139a9a47dec6975884803473fabeab603922df57ebfe2 - 0.0% (200 Bytes)

[#008] sha256:d3317291d77fc00c20486bb0646d582dd91482b9c79943d8f3dd3372351e3eff - 0.01% (2.16 KB)

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


History
2018-09-12 08:18:11 UTC

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

2018-09-12 08:18:13 UTC

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

2018-09-12 08:18:14 UTC

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

2018-09-12 10:51: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"

2018-09-12 10:51:57 UTC

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

2018-09-12 10:51:59 UTC

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

2018-09-12 10:52:00 UTC

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

2018-10-13 10:42:47 UTC

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

2018-10-13 10:42:49 UTC

/bin/sh -c #(nop) ENV PG_SHA256=608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

2018-10-13 10:45: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 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-10-13 10:45:58 UTC

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

2018-10-13 10:46:04 UTC

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

2018-10-13 10:46:05 UTC

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

2018-10-13 10:46:09 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-10-13 10:46:10 UTC

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

2018-10-13 10:46:12 UTC

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

2018-10-13 10:46:17 UTC

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

2018-10-13 10:46:19 UTC

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

2018-10-13 10:46:22 UTC

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

2018-10-13 10:46:24 UTC

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

Details
Created

2018-10-13 12:17:50 UTC

Size

27.2 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

11

PG_SHA256

608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

PG_VERSION

11rc1


Layers

[#000] sha256:e5d7a290acc264d66e5c29923d4b8a79135ffd15887225581968bf7df22fb281 - 8.1% (2.2 MB)

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

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

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

[#004] sha256:a4d64448ab7c83cd81839fcd56cbfb7789eb410bb8fec61b0b615374553b7fc2 - 91.86% (24.9 MB)

[#005] sha256:93abebcc891a79bad123323f3efcf8d3a51c1e532a05cffd294e29a2a0efe829 - 0.03% (7.31 KB)

[#006] sha256:89019b7ddaa9f676fcdb3bcd9b2164860be94b343522ff452b4326fa16c19e7d - 0.0% (128 Bytes)

[#007] sha256:4ab1b4b0b17518cddebdcc6fd14555934909a65d5e716231ab951b2f3bddbbd4 - 0.0% (168 Bytes)

[#008] sha256:46fd5719eeea4d45fc383990d454d41a4e66c854482e6946a1932fcc90e8ddbf - 0.01% (2.16 KB)

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


History
2018-09-12 11:42:25 UTC

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

2018-09-12 11:42:25 UTC

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

2018-09-12 11:42:25 UTC

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

2018-09-12 12:55:49 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-09-12 12:55:49 UTC

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

2018-09-12 12:55:50 UTC

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

2018-09-12 12:55:50 UTC

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

2018-10-13 12:14:31 UTC

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

2018-10-13 12:14:31 UTC

/bin/sh -c #(nop) ENV PG_SHA256=608c35369b79a40239663c4213267fd08d3184c3a2cd4d6ff71103ca61930609

2018-10-13 12:17:46 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-10-13 12:17:47 UTC

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

2018-10-13 12:17:47 UTC

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

2018-10-13 12:17:47 UTC

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

2018-10-13 12:17:48 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-10-13 12:17:48 UTC

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

2018-10-13 12:17:49 UTC

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

2018-10-13 12:17:49 UTC

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

2018-10-13 12:17:50 UTC

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

2018-10-13 12:17:50 UTC

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

2018-10-13 12:17:50 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