Namespace
library
Image / Tag
postgres:9.4.19-alpine
Content Digest
sha256:9f3715858f47dec9fe8bc71c3e039240a4a900fbe08e4223ff45dec35f37c060
Details
Created

2018-09-12 16:03:49 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

9.4

PG_SHA256

03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

PG_VERSION

9.4.19


Layers

[#000] sha256:6b5c2e9bbf9885ccefe772a5a1f471d7da4315b7bf43ec3b4c014a65d04073b1 - 14.97% (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:296e658eaf2271d1a14a7762b96476335d2992bfb24004d453beef3ec37c66f4 - 84.96% (12.3 MB)

[#005] sha256:21d44091536534be18e48ea36b9fcde0151cac2e672c433189f9cd881c18b65b - 0.04% (6.5 KB)

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

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

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

[#009] sha256:cfdc8b13402373035e4cbf434867c356c2dc2fd034d711135e1f5ce19cf6e1e4 - 0.0% (121 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 16:01:19 UTC

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

2018-09-12 16:01:19 UTC

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

2018-09-12 16:01:19 UTC

/bin/sh -c #(nop) ENV PG_SHA256=03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

2018-09-12 16:03:45 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-09-12 16:03:46 UTC

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

2018-09-12 16:03:47 UTC

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

2018-09-12 16:03:47 UTC

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

2018-09-12 16:03: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-09-12 16:03:48 UTC

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

2018-09-12 16:03:48 UTC

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

2018-09-12 16:03:49 UTC

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

2018-09-12 16:03:49 UTC

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

2018-09-12 16:03:49 UTC

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

2018-09-12 16:03:49 UTC

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

Details
Created

2018-09-12 01:58:25 UTC

Size

14 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

9.4

PG_SHA256

03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

PG_VERSION

9.4.19


Layers

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

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

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

[#003] sha256:dd8a62b512237b0543e6252cc0cf78d0769deed8e1d4f7e0e4d0a962a96285ac - 84.94% (11.9 MB)

[#004] sha256:f75de8874a5cf60e93604aa4052310afad6c9a21b177dba948115448b42b61c3 - 0.05% (6.51 KB)

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

[#006] sha256:1a3e357538bbe39b8bdca307a4bb0fd290d646870089003c53cb7c9d92292eed - 0.0% (169 Bytes)

[#007] sha256:a4e7589515d3d048cecd704a8acc80489a4acf0dd2309f80a4fdeadc9c96f000 - 0.02% (2.17 KB)

[#008] sha256:11e45d8827a1c282fe1196723be32d6d46c0fd7ae5ea993923ff1ef0374987ae - 0.0% (119 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:55:50 UTC

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

2018-09-12 01:55:50 UTC

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

2018-09-12 01:55:50 UTC

/bin/sh -c #(nop) ENV PG_SHA256=03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

2018-09-12 01:58:19 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-09-12 01:58:20 UTC

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

2018-09-12 01:58:21 UTC

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

2018-09-12 01:58:21 UTC

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

2018-09-12 01:58: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-09-12 01:58:23 UTC

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

2018-09-12 01:58:23 UTC

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

2018-09-12 01:58:24 UTC

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

2018-09-12 01:58:24 UTC

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

2018-09-12 01:58:24 UTC

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

2018-09-12 01:58:25 UTC

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

Details
Created

2018-09-12 13:06:26 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

9.4

PG_SHA256

03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

PG_VERSION

9.4.19


Layers

[#000] sha256:905674ea9d9448b14f15ae82e3c34138680bac1ef4fc29088aae8c9639b502fe - 15.39% (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:97a89211086a162554fef21db81d846b6b06c8683dc2b74341cd0fbc2e49d920 - 84.54% (11.2 MB)

[#005] sha256:b0358085d80f9d7905bd842a11745c8e007fedac178cb9166297d061d68e5307 - 0.05% (6.51 KB)

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

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

[#008] sha256:a11a10a113104c2e84556d828d2e244c8fd871d2c86e90aa6917d2818287a879 - 0.02% (2.17 KB)

[#009] sha256:1286f242330eef8e433bcc67bd0c31b7a115252a6650f036dff7a659f19cf68c - 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 12:33:25 UTC

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

2018-09-12 12:33:25 UTC

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

2018-09-12 12:33:26 UTC

/bin/sh -c #(nop) ENV PG_SHA256=03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

2018-09-12 13:06: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 && 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-09-12 13:06:08 UTC

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

2018-09-12 13:06:13 UTC

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

2018-09-12 13:06:13 UTC

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

2018-09-12 13:06:17 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-09-12 13:06:18 UTC

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

2018-09-12 13:06:19 UTC

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

2018-09-12 13:06:24 UTC

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

2018-09-12 13:06:25 UTC

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

2018-09-12 13:06:26 UTC

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

2018-09-12 13:06:26 UTC

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

Details
Created

2018-09-22 09:52:05 UTC

Size

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

9.4

PG_SHA256

03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

PG_VERSION

9.4.19


Layers

[#000] sha256:9941776d74c9129fd585b6f0434ba48bd3a7112d6736bc02e6d12f41153cab26 - 15.58% (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:8982e66cbd96a1bbc6cddbc5de209e60cc18a1c437c2b97d8d032c3e111b5ec2 - 84.35% (10.8 MB)

[#005] sha256:42ef606f359481066ae5dedf7ccb6f4a7b3b1555d49d2089a04acc7ba3585983 - 0.05% (6.5 KB)

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

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

[#008] sha256:6324629cbaa97a7b59f12f4001970cb499271d1d3001c7535d5ec98b7337422d - 0.02% (2.17 KB)

[#009] sha256:ac16f9d7ecee0b0a5aa8639fe3037bcf2bc1789b32711039641d52518e2c0cfc - 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:48:35 UTC

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

2018-09-22 09:48:35 UTC

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

2018-09-22 09:48:36 UTC

/bin/sh -c #(nop) ENV PG_SHA256=03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

2018-09-22 09:51:55 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-09-22 09:51:57 UTC

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

2018-09-22 09:51:58 UTC

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

2018-09-22 09:51:59 UTC

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

2018-09-22 09:52:00 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-09-22 09:52:01 UTC

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

2018-09-22 09:52:02 UTC

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

2018-09-22 09:52:03 UTC

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

2018-09-22 09:52:04 UTC

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

2018-09-22 09:52:05 UTC

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

2018-09-22 09:52:05 UTC

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

Details
Created

2018-09-12 11:17:20 UTC

Size

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

9.4

PG_SHA256

03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

PG_VERSION

9.4.19


Layers

[#000] sha256:d6201b52ea9b908d4d6e950e2a79ded27be48979d6f0f63bd3a57b16b621f188 - 15.36% (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:1f9b907878297eff177b2511e46f1abc7b0233ecb41d9c265e9c6e21368c4db0 - 84.57% (11.5 MB)

[#005] sha256:4a1581ceb0e42d5b05384435d05519b3c738fef29a1a535a68d7bdc7406300bd - 0.05% (6.5 KB)

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

[#007] sha256:343939310cf839d22be262cf52bddfc696c6d6502f113a20cf750176e2d71a1e - 0.0% (199 Bytes)

[#008] sha256:4389048039ef161ac38f990c335902bbfc91e4910b6b88275eacf583f28f64de - 0.02% (2.16 KB)

[#009] sha256:75af6094aaba1957711d7432d041210893187f43cb9cf6d7fbc043b757fb10ab - 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 11:12:47 UTC

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

2018-09-12 11:12:51 UTC

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

2018-09-12 11:12:57 UTC

/bin/sh -c #(nop) ENV PG_SHA256=03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

2018-09-12 11:16:57 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-09-12 11:17:01 UTC

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

2018-09-12 11:17:05 UTC

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

2018-09-12 11:17:06 UTC

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

2018-09-12 11:17: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-09-12 11:17:11 UTC

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

2018-09-12 11:17:12 UTC

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

2018-09-12 11:17:16 UTC

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

2018-09-12 11:17:17 UTC

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

2018-09-12 11:17:18 UTC

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

2018-09-12 11:17:20 UTC

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

Details
Created

2018-09-12 13:08:33 UTC

Size

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

9.4

PG_SHA256

03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

PG_VERSION

9.4.19


Layers

[#000] sha256:e5d7a290acc264d66e5c29923d4b8a79135ffd15887225581968bf7df22fb281 - 15.79% (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:d837d4e22999d7173c1426635fee7bffb196a2e50ec9029469e6fa4ce7e9e9be - 84.14% (11.7 MB)

[#005] sha256:e40b6fd5158095a2ead47a75b698aa0a1004ee45f8052a4845ec254c7f9d3eca - 0.05% (6.5 KB)

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

[#007] sha256:a7c536a8095bb2ee2b857e34a086d9de17427dbc2c2761c33ce7b3b39f4ed6a5 - 0.0% (167 Bytes)

[#008] sha256:403ae12fd1e72b6e31762a209da51e5b16c80b7bbeb2c8d8ff1c4aa568e661c5 - 0.02% (2.16 KB)

[#009] sha256:416346e36f4b868464eff7c95052eb912e874cdba9b79630798ee24c673edf89 - 0.0% (119 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 13:06:34 UTC

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

2018-09-12 13:06:35 UTC

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

2018-09-12 13:06:35 UTC

/bin/sh -c #(nop) ENV PG_SHA256=03776b036b2a05371083558e10c21cc4b90bde9eb3aff60299c4ce7c084c168b

2018-09-12 13:08:27 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-09-12 13:08:30 UTC

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

2018-09-12 13:08:30 UTC

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

2018-09-12 13:08:30 UTC

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

2018-09-12 13:08:31 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-09-12 13:08:31 UTC

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

2018-09-12 13:08:32 UTC

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

2018-09-12 13:08:32 UTC

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

2018-09-12 13:08:32 UTC

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

2018-09-12 13:08:33 UTC

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

2018-09-12 13:08:33 UTC

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