Namespace
library
Image / Tag
postgres:11-beta1-alpine
Content Digest
sha256:218f2eef0b6086c04e9984a05c01467b2ea1d8ee7f799920d914e9eea54fdf8d
Details
Created

2018-06-09 10:56:58 UTC

Size

15 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

17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

PG_VERSION

11beta1


Layers

[#000] sha256:381c1d4107a4401d75b916e6dc4331efddc01adac41f49eeaa711ab898606a1a - 13.48% (2.03 MB)

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

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

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

[#004] sha256:19ced20dc29134dba87e3b797fe1ef28e28af85253d2a60426439f19a20f360d - 86.46% (13 MB)

[#005] sha256:8b81db9ff15c1def92988a5406eaa08c617efa5d35d8ced08183b9991dcf63df - 0.05% (7.28 KB)

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

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

[#008] sha256:390d27a320f272cc8fa246b178fd4e987f434ba80b7e9b5acbe6c1b6a9abb577 - 0.01% (2.18 KB)

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


History
2018-06-01 06:57:26 UTC

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

2018-06-01 06:57:26 UTC

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

2018-06-01 06:57:26 UTC

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

2018-06-01 11:56: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-06-01 11:56:42 UTC

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

2018-06-01 11:56:42 UTC

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

2018-06-01 11:56:43 UTC

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

2018-06-01 11:56:43 UTC

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

2018-06-01 11:56:43 UTC

/bin/sh -c #(nop) ENV PG_SHA256=17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

2018-06-01 12:00:00 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-06-01 12:00:01 UTC

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

2018-06-01 12:00:02 UTC

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

2018-06-01 12:00:02 UTC

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

2018-06-01 12:00:03 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-06-01 12:00:03 UTC

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

2018-06-09 10:56:57 UTC

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

2018-06-09 10:56:57 UTC

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

2018-06-09 10:56:58 UTC

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

2018-06-09 10:56:58 UTC

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

2018-06-09 10:56:58 UTC

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

Details
Created

2018-06-27 00:02:52 UTC

Size

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

17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

PG_VERSION

11beta1


Layers

[#000] sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 - 13.62% (1.97 MB)

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

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

[#003] sha256:b36a5f3bf018e997ccf5109a1c449fe30e058dda5d080ebde95282d852a79cf8 - 86.31% (12.5 MB)

[#004] sha256:57531174361fe8b2263603baca7263be5754150445262b4a743382438e57ff39 - 0.05% (7.28 KB)

[#005] sha256:9336e33fadd46ad26e7b18d0ff7aab796909f8d49c39acaf531a4760be31857c - 0.0% (128 Bytes)

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

[#007] sha256:03d7467adf2974109d4299043632142143f0e1a506c48584b5df49845646e9d0 - 0.01% (2.18 KB)

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


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

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

2018-01-09 21:10:58 UTC

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

2018-02-18 02:31:30 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2018-02-18 02:31:31 UTC

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

2018-02-18 02:31:32 UTC

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

2018-05-30 21:01:54 UTC

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

2018-05-30 21:01:55 UTC

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

2018-05-30 21:01:55 UTC

/bin/sh -c #(nop) ENV PG_SHA256=17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

2018-05-30 21:04:42 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-05-30 21:04:43 UTC

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

2018-05-30 21:04:44 UTC

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

2018-05-30 21:04:44 UTC

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

2018-05-30 21:04:45 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-05-30 21:04:45 UTC

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

2018-06-27 00:02:51 UTC

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

2018-06-27 00:02:52 UTC

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

2018-06-27 00:02:52 UTC

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

2018-06-27 00:02:52 UTC

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

2018-06-27 00:02:52 UTC

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

Details
Created

2018-06-09 08:43:16 UTC

Size

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

17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

PG_VERSION

11beta1


Layers

[#000] sha256:95d54dd4bdadebb53f9b91b25aa7dc5fcb83c534eb1d196eb0814aa1e16f3db2 - 14.08% (1.94 MB)

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

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

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

[#004] sha256:c8e0135d291e6ce28b5aea3102800e57a6a0e1b1e1db051bd5f0d25667aaf900 - 85.85% (11.9 MB)

[#005] sha256:a35e1a0609eed43791af89d24999605b3476dfdb000b8ca7e882437e6d772e09 - 0.05% (7.28 KB)

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

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

[#008] sha256:4b0af2fcf2910f2784484e8442b66f6645e00fae089e0749654838451776fe9e - 0.02% (2.18 KB)

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


History
2017-12-01 18:41:45 UTC

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

2017-12-01 18:41:45 UTC

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

2017-12-01 18:41:46 UTC

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

2018-04-27 07:49: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"

2018-04-27 07:49:29 UTC

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

2018-04-27 07:49:32 UTC

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

2018-05-31 07:49:26 UTC

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

2018-05-31 07:49:27 UTC

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

2018-05-31 07:49:28 UTC

/bin/sh -c #(nop) ENV PG_SHA256=17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

2018-05-31 08:30: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-05-31 08:30:18 UTC

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

2018-05-31 08:30:22 UTC

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

2018-05-31 08:30:23 UTC

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

2018-05-31 08:30:27 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-05-31 08:30:28 UTC

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

2018-06-09 08:43:10 UTC

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

2018-06-09 08:43:14 UTC

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

2018-06-09 08:43:15 UTC

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

2018-06-09 08:43:16 UTC

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

2018-06-09 08:43:16 UTC

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

Details
Created

2018-06-09 09:12:11 UTC

Size

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

17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

PG_VERSION

11beta1


Layers

[#000] sha256:b78042c299ad99d1e646b18762d4bc22a84c4f88e5bb491ea6293a10f53ddf79 - 14.25% (1.9 MB)

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

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

[#003] sha256:ee1f330d87363983accf413df8ec516758c5479fc2e75cef865c71f55033b9a8 - 0.0% (112 Bytes)

[#004] sha256:3229e9194a768bba8c8dbccb95568a9d0ce67c0dfb087a26f7237994735a8074 - 85.68% (11.4 MB)

[#005] sha256:e5215bc270f030d1564387feb78d08d8de21ba47556f79961e26f0159f21e9ce - 0.05% (7.28 KB)

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

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

[#008] sha256:bd10b96ab8f6de8f6aa8ebe6a2424962b0ad27ef73e213c438ad16488805a258 - 0.02% (2.18 KB)

[#009] sha256:a6e143043693172aab1b4c79ead525b6b62496350dab9ef08e74f5b5151e6673 - 0.0% (120 Bytes)


History
2017-12-01 18:42:42 UTC

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

2017-12-01 18:42:42 UTC

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

2017-12-01 18:42:43 UTC

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

2018-02-18 15:21:15 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-02-18 15:21:16 UTC

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

2018-02-18 15:21:17 UTC

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

2018-05-31 10:10:32 UTC

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

2018-05-31 10:10:34 UTC

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

2018-05-31 10:10:35 UTC

/bin/sh -c #(nop) ENV PG_SHA256=17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

2018-05-31 10:17: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 && 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-05-31 10:17:36 UTC

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

2018-05-31 10:17:38 UTC

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

2018-05-31 10:17:39 UTC

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

2018-05-31 10:17: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-05-31 10:17:42 UTC

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

2018-06-09 09:12:06 UTC

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

2018-06-09 09:12:08 UTC

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

2018-06-09 09:12:09 UTC

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

2018-06-09 09:12:10 UTC

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

2018-06-09 09:12:11 UTC

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

Details
Created

2018-06-09 08:40:28 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

11

PG_SHA256

17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

PG_VERSION

11beta1


Layers

[#000] sha256:0da653ea85b50d280ec56ca2eafb7e8b37590630356e043fa9ff162d55732a23 - 14.04% (1.99 MB)

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

[#002] sha256:6a489c2288bce888c6fac93b540da6d11957e1b4920137f6f06f21ac757708c5 - 0.0% (178 Bytes)

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

[#004] sha256:52073433c5395cb84f08cc3d2fbe1744c38916c9849758c08a9f5d2180a9330a - 85.89% (12.1 MB)

[#005] sha256:5087b63d88a07374bd50f7f824739ff4a32a5e90d439aa9c1c89dd7c7f8e83b5 - 0.05% (7.28 KB)

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

[#007] sha256:77683ed2cc2add814cf1fdd16f1568558ccfa6042d712a464d088e71ef576d5a - 0.0% (201 Bytes)

[#008] sha256:6da751151464293d45ee7ef4c8e9328be935e83409990b80ebc3d51aa1346d27 - 0.02% (2.18 KB)

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


History
2017-12-01 18:41:54 UTC

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

2017-12-01 18:41:55 UTC

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

2017-12-01 18:41:57 UTC

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

2018-02-17 23:01:41 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-02-17 23:01:43 UTC

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

2018-02-17 23:01:47 UTC

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

2018-05-31 10:05:52 UTC

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

2018-05-31 10:05:53 UTC

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

2018-05-31 10:05:54 UTC

/bin/sh -c #(nop) ENV PG_SHA256=17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

2018-05-31 10:08: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

2018-05-31 10:08:17 UTC

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

2018-05-31 10:08:19 UTC

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

2018-05-31 10:08:19 UTC

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

2018-05-31 10:08:29 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-05-31 10:08:30 UTC

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

2018-06-09 08:40:24 UTC

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

2018-06-09 08:40:26 UTC

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

2018-06-09 08:40:26 UTC

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

2018-06-09 08:40:27 UTC

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

2018-06-09 08:40:28 UTC

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

Details
Created

2018-06-09 11:55:32 UTC

Size

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

17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

PG_VERSION

11beta1


Layers

[#000] sha256:11e7bc85614a236b32043d147930fd2bc9055af8642fe30e5e56142590572b0e - 14.38% (2.08 MB)

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

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

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

[#004] sha256:8a5c8a2a4871dd9e543a3f59250d3fb85454e978a2bda1821e155c071836f7ad - 85.55% (12.4 MB)

[#005] sha256:930dfc552dc42248b57a551ed7fa07f2c6e35d45d017a837842575aca8833847 - 0.05% (7.28 KB)

[#006] sha256:7aa41149e1e5624bb3a2859d52aaab7d471a9a2532ab0e3c4487882746c0763f - 0.0% (128 Bytes)

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

[#008] sha256:0da94724f893e7f9291b207201af2fa4fe69c784241accba2b0791d40bba7cce - 0.01% (2.18 KB)

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


History
2017-12-01 18:41:57 UTC

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

2017-12-01 18:41:58 UTC

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

2017-12-01 18:41:58 UTC

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

2018-02-18 10: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"

2018-02-18 10:25:35 UTC

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

2018-02-18 10:25:36 UTC

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

2018-05-31 12:23:29 UTC

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

2018-05-31 12:23:29 UTC

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

2018-05-31 12:23:29 UTC

/bin/sh -c #(nop) ENV PG_SHA256=17889cbffdf4f07c193b16d76b2f9c45daa3f2ab225acd8d7f01521949cb1355

2018-05-31 12:27:16 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-05-31 12:27:17 UTC

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

2018-05-31 12:27:18 UTC

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

2018-05-31 12:27:18 UTC

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

2018-05-31 12:27:19 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-05-31 12:27:19 UTC

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

2018-06-09 11:55:31 UTC

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

2018-06-09 11:55:32 UTC

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

2018-06-09 11:55:32 UTC

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

2018-06-09 11:55:32 UTC

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

2018-06-09 11:55:32 UTC

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