Namespace
library
Image / Tag
postgres:11.1-alpine
Content Digest
sha256:6c4e4ca91b3ccb304c0dbab14cf7ca6acf87d08fd639780db53de3371181d56d
Details
Created

2019-02-06 20:41:58 UTC

Size

27.3 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

90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

PG_VERSION

11.1


Layers

[#000] sha256:bcb4f889a459d231e71d88c93174eec5edef928ab1e2481f8b0074076ee934a6 - 9.6% (2.62 MB)

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

[#002] sha256:28707ab16cad86cb30cd0ea91c02c4829fa45e96504435a6ddf9b80190e85967 - 0.0% (147 Bytes)

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

[#004] sha256:63a4d74fad46d4a9d1f92e2b13aaa577b36f3a8828449a136eaadfaf9a3df965 - 90.36% (24.7 MB)

[#005] sha256:4265fa707b92c65c6df7c247268010dbb55a8f19b0804fdd7821ad65cb38cba5 - 0.03% (7.31 KB)

[#006] sha256:33d107b817bbd4116f03aaf36c5ac00fd3c50c1aca0413886838e9971c15eeee - 0.0% (130 Bytes)

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

[#008] sha256:c0c79e2c90dd7d305db61e2fcbf2a7eab5b8b8d600fb7c22313a94b60562cc0a - 0.01% (2.32 KB)

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


History
2019-01-31 11:38:57 UTC

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

2019-01-31 11:38:57 UTC

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

2019-01-31 11:38:57 UTC

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

2019-02-06 20:35:16 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-02-06 20:35:17 UTC

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

2019-02-06 20:35:18 UTC

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

2019-02-06 20:35:18 UTC

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

2019-02-06 20:35:18 UTC

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

2019-02-06 20:35:19 UTC

/bin/sh -c #(nop) ENV PG_SHA256=90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

2019-02-06 20:41:51 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

2019-02-06 20:41:53 UTC

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

2019-02-06 20:41:54 UTC

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

2019-02-06 20:41:54 UTC

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

2019-02-06 20:41: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)

2019-02-06 20:41:56 UTC

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

2019-02-06 20:41:56 UTC

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

2019-02-06 20:41:57 UTC

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

2019-02-06 20:41:58 UTC

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

2019-02-06 20:41:58 UTC

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

2019-02-06 20:41:58 UTC

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

Details
Created

2019-02-05 20:37:35 UTC

Size

26.5 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

90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

PG_VERSION

11.1


Layers

[#000] sha256:6c40cc604d8e4c121adcb6b0bfe8bb038815c350980090e74aa5a6423f8f82c0 - 9.91% (2.63 MB)

[#001] sha256:3ea5fa93d0256a5c13fa2926f47a75d64ba34cc9f224ef3d9190d71d97e6f857 - 0.0% (149 Bytes)

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

[#003] sha256:1549d653d730af2c09dac181232f39d6598fd7dd4cfcf9ce6db4bdd48ea0cd94 - 90.05% (23.9 MB)

[#004] sha256:1f52f9ddebb6860a0e2caa8e8415b712b25cd4f67841985c077b7852a311c87f - 0.03% (7.31 KB)

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

[#006] sha256:a562b26ea57afb8a017eaf8c7b453b6efc11090f634f7e20dec31fe55e8f4744 - 0.0% (171 Bytes)

[#007] sha256:04f1f3b2431332365a4ea9e5c999ebbc39b75e175550b7be013244667c4806ec - 0.01% (2.32 KB)

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


History
2019-01-30 22:19:52 UTC

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

2019-01-30 22:19:52 UTC

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

2019-02-05 20:34:28 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-02-05 20:34:28 UTC

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

2019-02-05 20:34:29 UTC

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

2019-02-05 20:34:29 UTC

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

2019-02-05 20:34:29 UTC

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

2019-02-05 20:34:29 UTC

/bin/sh -c #(nop) ENV PG_SHA256=90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

2019-02-05 20:37:31 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

2019-02-05 20:37:32 UTC

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

2019-02-05 20:37:32 UTC

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

2019-02-05 20:37:33 UTC

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

2019-02-05 20:37:33 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)

2019-02-05 20:37:33 UTC

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

2019-02-05 20:37:34 UTC

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

2019-02-05 20:37:34 UTC

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

2019-02-05 20:37:34 UTC

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

2019-02-05 20:37:35 UTC

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

2019-02-05 20:37:35 UTC

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

Details
Created

2019-02-06 09:16:39 UTC

Size

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

11

PG_SHA256

90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

PG_VERSION

11.1


Layers

[#000] sha256:05276f4299f299c4d5ca6776672dcf52f03189b7004e747fd1c2b759d9157831 - 9.46% (2.42 MB)

[#001] sha256:5657e63df53674891643732c236f7932524d1710ce42d916bb3c889a8652df67 - 0.0% (173 Bytes)

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

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

[#004] sha256:53b767e8d9462a1649c9ed84b5da41d2ec5013fa7a8842a540b83c72b60786f9 - 90.5% (23.2 MB)

[#005] sha256:86614c4efbff13ccac3e37fb5f6880cb5656a90253978a1625df33a389bfd8ee - 0.03% (7.31 KB)

[#006] sha256:430f9f0e321973c7e71528b4cad65063f780aa92a72c5a563df293688dcddca5 - 0.0% (162 Bytes)

[#007] sha256:1a4f855cb624aaef8dc6618984e6a929f0992b618a79b0e057b5ed1fb779192c - 0.0% (200 Bytes)

[#008] sha256:3ca92aa679eb9fa56e7f6a924ab189082da981aaadc640c4a00ae4383b77ecf5 - 0.01% (2.31 KB)

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


History
2019-01-31 08:50:08 UTC

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

2019-01-31 08:50:09 UTC

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

2019-01-31 08:50:09 UTC

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

2019-02-06 09:14: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"

2019-02-06 09:14:36 UTC

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

2019-02-06 09:14:38 UTC

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

2019-02-06 09:14:38 UTC

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

2019-02-06 09:14:38 UTC

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

2019-02-06 09:14:39 UTC

/bin/sh -c #(nop) ENV PG_SHA256=90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

2019-02-06 09:16:30 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

2019-02-06 09:16:32 UTC

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

2019-02-06 09:16:33 UTC

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

2019-02-06 09:16:34 UTC

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

2019-02-06 09:16: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)

2019-02-06 09:16:36 UTC

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

2019-02-06 09:16:36 UTC

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

2019-02-06 09:16:38 UTC

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

2019-02-06 09:16:38 UTC

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

2019-02-06 09:16:39 UTC

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

2019-02-06 09:16:39 UTC

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

Details
Created

2019-02-06 13:37:23 UTC

Size

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

11

PG_SHA256

90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

PG_VERSION

11.1


Layers

[#000] sha256:ee02fa18913c824d1d1c9b680f1a43dad343b9d6c086a6bc62e3361c3d3a2d63 - 9.71% (2.56 MB)

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

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

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

[#004] sha256:64350f4ebf08cddf88a4ea33e7db04e6bbd6b2ca02eb5208170781b540d9cf3e - 90.25% (23.8 MB)

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

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

[#007] sha256:9437eefeebf13c4c54c5022ad270156654533af6c00a5897ef03c524cd84b3a7 - 0.0% (170 Bytes)

[#008] sha256:de93f35d7f0927ac3dbf09032f1839ee4864d6df2618ccd6119edd955887dde5 - 0.01% (2.31 KB)

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


History
2019-01-31 09:40:55 UTC

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

2019-01-31 09:40:56 UTC

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

2019-01-31 09:40:57 UTC

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

2019-02-06 13:29:54 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-02-06 13:29:55 UTC

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

2019-02-06 13:29:59 UTC

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

2019-02-06 13:30:00 UTC

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

2019-02-06 13:30:02 UTC

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

2019-02-06 13:30:03 UTC

/bin/sh -c #(nop) ENV PG_SHA256=90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

2019-02-06 13:37:02 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

2019-02-06 13:37:06 UTC

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

2019-02-06 13:37:09 UTC

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

2019-02-06 13:37:10 UTC

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

2019-02-06 13:37:14 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)

2019-02-06 13:37:15 UTC

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

2019-02-06 13:37:16 UTC

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

2019-02-06 13:37:19 UTC

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

2019-02-06 13:37:20 UTC

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

2019-02-06 13:37:22 UTC

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

2019-02-06 13:37:23 UTC

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

Details
Created

2019-02-06 11:53:57 UTC

Size

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

90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

PG_VERSION

11.1


Layers

[#000] sha256:3261f066f954b13c338d7bebabcc22a2a4037bfe4c6989b60595b13ac629445f - 9.53% (2.65 MB)

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

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

[#003] sha256:7cb66482184d38f93227b425be2fbb9de95131fd2822a5a879a050859ff43147 - 0.0% (148 Bytes)

[#004] sha256:2e36e7e6a88f733f7aa966c11e794c88520010830227d0398a9431fb5b2fbdf3 - 90.44% (25.2 MB)

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

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

[#007] sha256:5a27e2c8dab2d793591eb9205a3ab120c3cc71e1f66f3c424242081e25cec650 - 0.0% (201 Bytes)

[#008] sha256:56eff51cc2298b9dd63a1168a94fd73f3782f14cd9ba710c00cdea6886f600df - 0.01% (2.32 KB)

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


History
2019-01-31 09:21:00 UTC

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

2019-01-31 09:21:01 UTC

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

2019-01-31 09:21:02 UTC

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

2019-02-06 11:49:43 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-02-06 11:49:45 UTC

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

2019-02-06 11:49:53 UTC

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

2019-02-06 11:50:02 UTC

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

2019-02-06 11:50:10 UTC

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

2019-02-06 11:50:15 UTC

/bin/sh -c #(nop) ENV PG_SHA256=90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

2019-02-06 11:53: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

2019-02-06 11:53:26 UTC

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

2019-02-06 11:53:31 UTC

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

2019-02-06 11:53:34 UTC

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

2019-02-06 11:53:39 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)

2019-02-06 11:53:42 UTC

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

2019-02-06 11:53:43 UTC

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

2019-02-06 11:53:49 UTC

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

2019-02-06 11:53:52 UTC

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

2019-02-06 11:53:55 UTC

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

2019-02-06 11:53:57 UTC

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

Details
Created

2019-02-06 13:41:38 UTC

Size

26.3 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

90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

PG_VERSION

11.1


Layers

[#000] sha256:11396e2e564eba3ffa05ba6ea52a711025650a7cfe1387d6a59fdd9a90f2e024 - 9.22% (2.42 MB)

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

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

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

[#004] sha256:774000ad2df56657ce496ed3c8ba79ab8294525a65c1ff2a0b7231bce3bacdf7 - 90.74% (23.9 MB)

[#005] sha256:92a1ec1c50b275ac480baf0b7c4f27b0dd50e403d0a83236a198729a06bccd35 - 0.03% (7.31 KB)

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

[#007] sha256:ea130a389146854a3adaa899ede2a1fbe5d335e6b63ec09e89e1303c003e6421 - 0.0% (170 Bytes)

[#008] sha256:bb99ac636f447dc6ba1228311a0fa522ff9f772057b2ab9241adea0787899987 - 0.01% (2.31 KB)

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


History
2019-01-31 12:41:43 UTC

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

2019-01-31 12:41:44 UTC

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

2019-01-31 12:41:44 UTC

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

2019-02-06 13:38: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"

2019-02-06 13:38:18 UTC

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

2019-02-06 13:38:19 UTC

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

2019-02-06 13:38:19 UTC

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

2019-02-06 13:38:19 UTC

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

2019-02-06 13:38:19 UTC

/bin/sh -c #(nop) ENV PG_SHA256=90815e812874831e9a4bf6e1136bf73bc2c5a0464ef142e2dfea40cda206db08

2019-02-06 13:41:33 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

2019-02-06 13:41:34 UTC

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

2019-02-06 13:41:35 UTC

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

2019-02-06 13:41:35 UTC

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

2019-02-06 13:41:36 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)

2019-02-06 13:41:36 UTC

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

2019-02-06 13:41:36 UTC

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

2019-02-06 13:41:37 UTC

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

2019-02-06 13:41:37 UTC

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

2019-02-06 13:41:38 UTC

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

2019-02-06 13:41:38 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