Namespace
library
Image / Tag
postgres:9.3.24-alpine
Content Digest
sha256:444e3f102596b5645f0921bf643149d98e0254f13e838201b873883dcc0a9cdb
Details
Created

2018-09-12 16:06:52 UTC

Size

14.1 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

PG_VERSION

9.3.24


Layers

[#000] sha256:6b5c2e9bbf9885ccefe772a5a1f471d7da4315b7bf43ec3b4c014a65d04073b1 - 15.32% (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:df627b1eff815f62cb4a96a30af0f220ae60bbd1235a06cb26e7d45ff4e501e5 - 84.61% (12 MB)

[#005] sha256:95a6e6f2f44e452ec2e13e070b82fae6bcbda4c4cd939d8aa1078683841d7cf6 - 0.04% (6.32 KB)

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

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

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

[#009] sha256:787d7c4035a41905d27a93ce4b37379b7a3d344ca53778e5d88da02000e86967 - 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:04:09 UTC

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

2018-09-12 16:04:09 UTC

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

2018-09-12 16:04:09 UTC

/bin/sh -c #(nop) ENV PG_SHA256=8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

2018-09-12 16:04:09 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-09-12 16:04:10 UTC

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

2018-09-12 16:06:48 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 && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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:06:49 UTC

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

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

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

2018-09-12 16:06:50 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:06:50 UTC

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

2018-09-12 16:06:51 UTC

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

2018-09-12 16:06:51 UTC

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

2018-09-12 16:06:51 UTC

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

2018-09-12 16:06:52 UTC

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

2018-09-12 16:06:52 UTC

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

Details
Created

2018-09-12 02:02:59 UTC

Size

13.7 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

PG_VERSION

9.3.24


Layers

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

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

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

[#003] sha256:83f5445005c5972545d987bf0ea5337d349ea088711353d05457707a8d807f01 - 84.62% (11.6 MB)

[#004] sha256:944667d130326d8f96098d14f2fed8160d89180c97f99e2947fe2db9b320abcb - 0.04% (6.32 KB)

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

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

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

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


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

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

2018-09-11 22:19:50 UTC

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

2018-09-12 01:37:36 UTC

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

2018-09-12 01:37:36 UTC

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

2018-09-12 01:37:37 UTC

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

2018-09-12 01:58:46 UTC

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

2018-09-12 01:58:46 UTC

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

2018-09-12 01:58:46 UTC

/bin/sh -c #(nop) ENV PG_SHA256=8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

2018-09-12 01:58:47 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-09-12 01:58:47 UTC

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

2018-09-12 02:02:53 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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 02:02:54 UTC

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

2018-09-12 02:02:55 UTC

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

2018-09-12 02:02:56 UTC

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

2018-09-12 02:02:57 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 02:02:57 UTC

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

2018-09-12 02:02:57 UTC

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

2018-09-12 02:02:58 UTC

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

2018-09-12 02:02:58 UTC

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

2018-09-12 02:02:59 UTC

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

2018-09-12 02:02:59 UTC

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

Details
Created

2018-09-12 13:41:18 UTC

Size

13 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

PG_VERSION

9.3.24


Layers

[#000] sha256:905674ea9d9448b14f15ae82e3c34138680bac1ef4fc29088aae8c9639b502fe - 15.74% (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:fab0ddd03fc493bd53720c731647991a287d0fbac0662876759273443d9d919e - 84.19% (10.9 MB)

[#005] sha256:205e24f466008cb91809399a444773e1d31a8169bfd7201e9a45949142ceffe5 - 0.05% (6.33 KB)

[#006] sha256:1d23d2dadf94ffd7956864d986e25188c5577c352ab67ecff4896f7324aca6d3 - 0.0% (162 Bytes)

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

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

[#009] sha256:3f22fb3262a1c8416cf6dc4ac6503f99408591b665a6dcd6466c01f9a6210643 - 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 13:06:39 UTC

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

2018-09-12 13:06:40 UTC

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

2018-09-12 13:06:40 UTC

/bin/sh -c #(nop) ENV PG_SHA256=8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

2018-09-12 13:06:41 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-09-12 13:06:42 UTC

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

2018-09-12 13:40:53 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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:40:59 UTC

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

2018-09-12 13:41:04 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:41:05 UTC

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

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

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

2018-09-12 13:41:12 UTC

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

2018-09-12 13:41:16 UTC

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

2018-09-12 13:41:17 UTC

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

2018-09-12 13:41:18 UTC

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

2018-09-12 13:41:18 UTC

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

Details
Created

2018-09-22 09:56:11 UTC

Size

12.6 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

PG_VERSION

9.3.24


Layers

[#000] sha256:9941776d74c9129fd585b6f0434ba48bd3a7112d6736bc02e6d12f41153cab26 - 15.91% (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:4b40efd3ddbac24febba871e13b64179835bf774f96c9f2a033a0b3bc9eba0a3 - 84.02% (10.6 MB)

[#005] sha256:35751e647c8c6bf59111c38607fa256410633cf536f49a6a0d54b54080c86c2d - 0.05% (6.32 KB)

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

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

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

[#009] sha256:112e30a7275b1637722e204dd45e8a8873a129b1bf50154023bb9d6f57e3169b - 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:52:43 UTC

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

2018-09-22 09:52:44 UTC

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

2018-09-22 09:52:44 UTC

/bin/sh -c #(nop) ENV PG_SHA256=8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

2018-09-22 09:52:45 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-09-22 09:52:45 UTC

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

2018-09-22 09:56:01 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 && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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:56:02 UTC

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

2018-09-22 09:56:04 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:56:05 UTC

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

2018-09-22 09:56:06 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:56:07 UTC

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

2018-09-22 09:56:07 UTC

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

2018-09-22 09:56:09 UTC

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

2018-09-22 09:56:10 UTC

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

2018-09-22 09:56:10 UTC

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

2018-09-22 09:56:11 UTC

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

Details
Created

2018-09-12 11:22:57 UTC

Size

13.3 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

PG_VERSION

9.3.24


Layers

[#000] sha256:d6201b52ea9b908d4d6e950e2a79ded27be48979d6f0f63bd3a57b16b621f188 - 15.69% (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:3f861a9dd5992ede8c9f849b39f7dccf62951db96735e817b34517886c1040c2 - 84.24% (11.2 MB)

[#005] sha256:a4b0e1122236a6afbe9b58e2d023d4570fceefb56a9e4a4d88ef68b2fd86d93e - 0.05% (6.32 KB)

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

[#007] sha256:1fd40bba2e3e15d757b79694bd5f0d6c94f2a77efef1a3872fa9a926177cda44 - 0.0% (199 Bytes)

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

[#009] sha256:77d3c41453ab64f8a6cce63f8ee4fb1b9a7e4c7fa90902be88409aab8e7a584a - 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:18:52 UTC

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

2018-09-12 11:18:53 UTC

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

2018-09-12 11:18:54 UTC

/bin/sh -c #(nop) ENV PG_SHA256=8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

2018-09-12 11:18:55 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-09-12 11:18:56 UTC

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

2018-09-12 11:22:10 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 && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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:22:17 UTC

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

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

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

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

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

2018-09-12 11:22:37 UTC

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

2018-09-12 11:22:46 UTC

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

2018-09-12 11:22:50 UTC

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

2018-09-12 11:22:53 UTC

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

2018-09-12 11:22:57 UTC

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

Details
Created

2018-09-12 13:10:58 UTC

Size

13.6 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

PG_VERSION

9.3.24


Layers

[#000] sha256:e5d7a290acc264d66e5c29923d4b8a79135ffd15887225581968bf7df22fb281 - 16.13% (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:a9b93953f38156acb47b28672b2c36a98c746ceaaf37ea233d492e7764d5a9e6 - 83.8% (11.4 MB)

[#005] sha256:3e22acf20fffaf9fce5f6d82c7a6a64d265fd12f2406cba76ee354aac4d82271 - 0.05% (6.32 KB)

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

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

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

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


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

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

2018-09-12 11:42:25 UTC

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

2018-09-12 11:42:25 UTC

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

2018-09-12 12:55:49 UTC

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

2018-09-12 12:55:49 UTC

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

2018-09-12 12:55:50 UTC

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

2018-09-12 13:08:49 UTC

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

2018-09-12 13:08:49 UTC

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

2018-09-12 13:08:49 UTC

/bin/sh -c #(nop) ENV PG_SHA256=8214a73a3b2135226bdc1394c9efdcb80f79e504ec700cf9b23d0b6bc2b60da9

2018-09-12 13:08:49 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-09-12 13:08:49 UTC

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

2018-09-12 13:10:54 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 && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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:10:55 UTC

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

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

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

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

2018-09-12 13:10:57 UTC

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

2018-09-12 13:10:57 UTC

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

2018-09-12 13:10:57 UTC

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

2018-09-12 13:10:58 UTC

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

2018-09-12 13:10:58 UTC

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

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