2018-11-10 13:39:40 UTC
14.1 MB
en_US.utf8
OSSP_UUID_SHA25611a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
OSSP_UUID_VERSION1.6.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.3
PG_SHA256e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
PG_VERSION9.3.25
[#000] sha256:6b5c2e9bbf9885ccefe772a5a1f471d7da4315b7bf43ec3b4c014a65d04073b1 - 15.31% (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:37814a63d0e006c45613959c7789700f4e9502220fb52d6c33e50b3e6fb4830e - 84.62% (12 MB)
[#005] sha256:ba9fb122ad049dc960da6ab2576fd3b44226c03c8935d93f9c464e1b3a22f630 - 0.04% (6.33 KB)
[#006] sha256:2370ed6b52f0ae2b012192b13833dc0309097beba6528b8ebd1e48937271c477 - 0.0% (129 Bytes)
[#007] sha256:14bf7e2807a604888fd398faab238ded66985e491ed19df9efb3f35371e4589c - 0.0% (172 Bytes)
[#008] sha256:6d4302cd085263c6e5b917a15ccc88baf3c026485cd8f6c4fce841a96231d8a2 - 0.01% (2.17 KB)
[#009] sha256:f75a7ed73f9abe7c987d220d125d82669a321c27102c4a66e4396a25694e8a80 - 0.0% (121 Bytes)
/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-11-10 13:37:09 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.3.25
2018-11-10 13:37:09 UTC/bin/sh -c #(nop) ENV PG_SHA256=e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
2018-11-10 13:37:09 UTC/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2
2018-11-10 13:37:09 UTC/bin/sh -c #(nop) ENV OSSP_UUID_SHA256=11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
2018-11-10 13:39:35 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-11-10 13:39:36 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-11-10 13:39:37 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-11-10 13:39:37 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-11-10 13:39:38 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-11-10 13:39:38 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-11-10 13:39:38 UTC/bin/sh -c #(nop) COPY file:433e69abe3111480b9ab7a66c431215e594d273aab16b3294422463bbdc123b6 in /usr/local/bin/
2018-11-10 13:39:39 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-11-10 13:39:39 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-11-10 13:39:39 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-11-10 13:39:40 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-11-09 23:42:48 UTC
13.7 MB
en_US.utf8
OSSP_UUID_SHA25611a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
OSSP_UUID_VERSION1.6.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.3
PG_SHA256e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
PG_VERSION9.3.25
[#000] sha256:4fe2ade4980c2dda4fc95858ebb981489baec8c1e4bd282ab1c3560be8ff9bde - 15.31% (2.1 MB)
[#001] sha256:08cf8c12f47e64151935f8d8ea6529409384c9c0b753ef0df7df7711d35fe033 - 0.0% (147 Bytes)
[#002] sha256:451b995b6a91a797f19b87bc008422c652e8a565818e0de3e794da96c08e4030 - 0.0% (115 Bytes)
[#003] sha256:2719899cb10539f9e11a7e041e8af64e2593ff4ed33aa2bd2657c6b92e68151c - 84.63% (11.6 MB)
[#004] sha256:ae3bdfb5bfba2d14f786e0f8282897cb921a99264be604f6ba93fa55ea2071c2 - 0.04% (6.32 KB)
[#005] sha256:0896d132aeec108f505b86b5f8675b37d2590f8a9ff174b397de930849f763f1 - 0.0% (128 Bytes)
[#006] sha256:1c22c5e707d9a934236dc5b99e20f96d9194428599cdfb5e8667e155ef69a50c - 0.0% (171 Bytes)
[#007] sha256:5e9be062ee990e01c77ab5ef0a0d9dcd1c3aaf54bc5bf56706c3101c263ebda5 - 0.02% (2.16 KB)
[#008] sha256:01dea0f1c435452bb05dce869064a3049c0a74ebac8ad88b4eaf329230dd3d94 - 0.0% (121 Bytes)
/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-11-09 23:39:23 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.3.25
2018-11-09 23:39:23 UTC/bin/sh -c #(nop) ENV PG_SHA256=e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
2018-11-09 23:39:23 UTC/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2
2018-11-09 23:39:24 UTC/bin/sh -c #(nop) ENV OSSP_UUID_SHA256=11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
2018-11-09 23:42:35 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-11-09 23:42:44 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-11-09 23:42:45 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-11-09 23:42:45 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-11-09 23:42:46 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-11-09 23:42:46 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-11-09 23:42:47 UTC/bin/sh -c #(nop) COPY file:433e69abe3111480b9ab7a66c431215e594d273aab16b3294422463bbdc123b6 in /usr/local/bin/
2018-11-09 23:42:47 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-11-09 23:42:48 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-11-09 23:42:48 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-11-09 23:42:48 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-11-21 01:12:57 UTC
13 MB
en_US.utf8
OSSP_UUID_SHA25611a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
OSSP_UUID_VERSION1.6.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.3
PG_SHA256e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
PG_VERSION9.3.25
[#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:7ceab7ce0a0f0341d3884c935baaf614f806d9edf9d7af55e373fae4146321b3 - 84.19% (11 MB)
[#005] sha256:69d6b8d0ab2daf2702d3a05218fdc38436cc769b27c9d73d7c376afc20d2f2b5 - 0.05% (6.33 KB)
[#006] sha256:57d405a1393545b07e663142ffec172814f04ac1d92d5bbf381e82d338dbf4fe - 0.0% (161 Bytes)
[#007] sha256:d44da776e5103abd2dbd86c2d842bc8e8fa509c78dea80f9d79be1705c94cca9 - 0.0% (201 Bytes)
[#008] sha256:43044c1cfe33c7c7aee9c8793fcd329b644e9876c969756de89239301320cc88 - 0.02% (2.17 KB)
[#009] sha256:27ed3f13534256402cb5aaf0c80dfb21141a56f1aab82b2965c18a1ca83b53a2 - 0.0% (121 Bytes)
/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-11-21 00:34:32 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.3.25
2018-11-21 00:34:34 UTC/bin/sh -c #(nop) ENV PG_SHA256=e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
2018-11-21 00:34:36 UTC/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2
2018-11-21 00:34:37 UTC/bin/sh -c #(nop) ENV OSSP_UUID_SHA256=11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
2018-11-21 01:12: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-11-21 01:12:14 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-11-21 01:12:25 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-11-21 01:12:26 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-11-21 01:12:38 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-11-21 01:12:39 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-11-21 01:12:42 UTC/bin/sh -c #(nop) COPY file:a7048306041b14c20a46219dcd7d61954dbd72f2c6e8d15a95b1ab5ccc6b5c00 in /usr/local/bin/
2018-11-21 01:12:52 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-11-21 01:12:54 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-11-21 01:12:55 UTC/bin/sh -c #(nop) EXPOSE 5432
2018-11-21 01:12:57 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-11-10 13:55:23 UTC
12.6 MB
en_US.utf8
OSSP_UUID_SHA25611a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
OSSP_UUID_VERSION1.6.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.3
PG_SHA256e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
PG_VERSION9.3.25
[#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:d0431de8d235c91c8fdeabef14fb110e57a43e618aee6c54bb96dbe777089919 - 84.02% (10.6 MB)
[#005] sha256:f15fcefaf9e08a49b8a6ebd8df877d84b5195df3e9fe9193a79f258af91a2875 - 0.05% (6.32 KB)
[#006] sha256:e327702eaaecc5b78c0e217edc1c42283a12b2adebb8f6b881d6d19c89aa6b1a - 0.0% (129 Bytes)
[#007] sha256:979f0b444c0a010e591df1c53d1056ae07da679d7b372a8efd374f8b90622352 - 0.0% (170 Bytes)
[#008] sha256:42654a502eca718f55841f603811d06db674ef1de9421494c90f3b96bd4a46d1 - 0.02% (2.17 KB)
[#009] sha256:61a6b31abe09070ce11d943e29a09d13605aff0f22397a7fb99dda5f0bd9953e - 0.0% (121 Bytes)
/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-11-10 13:51:28 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.3.25
2018-11-10 13:51:29 UTC/bin/sh -c #(nop) ENV PG_SHA256=e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
2018-11-10 13:51:30 UTC/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2
2018-11-10 13:51:32 UTC/bin/sh -c #(nop) ENV OSSP_UUID_SHA256=11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
2018-11-10 13:55:09 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-11-10 13:55:11 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-11-10 13:55:13 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-11-10 13:55:14 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-11-10 13:55:16 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-11-10 13:55:17 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-11-10 13:55:18 UTC/bin/sh -c #(nop) COPY file:433e69abe3111480b9ab7a66c431215e594d273aab16b3294422463bbdc123b6 in /usr/local/bin/
2018-11-10 13:55:20 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-11-10 13:55:21 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-11-10 13:55:22 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-11-10 13:55:23 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-11-10 10:34:14 UTC
13.4 MB
en_US.utf8
OSSP_UUID_SHA25611a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
OSSP_UUID_VERSION1.6.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.3
PG_SHA256e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
PG_VERSION9.3.25
[#000] sha256:d6201b52ea9b908d4d6e950e2a79ded27be48979d6f0f63bd3a57b16b621f188 - 15.68% (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:729b802f1c24c05b9e58b6f9fa21f86e105ea28065f3c25d0c87d49bd7a49808 - 84.25% (11.2 MB)
[#005] sha256:49b43f3a6853ff8035a889139dc0f103d0eeb1d8768c1fa3d6f71d29777a2d8c - 0.05% (6.32 KB)
[#006] sha256:b04bb3b01096f45b564a3b49be90f78caa56156814b193cc5bf66f3697ebeed0 - 0.0% (162 Bytes)
[#007] sha256:6965caf4994ffe854c25d4a0769ddff4fa5f8a2bfaa61a6c84892e9a6d3a4f80 - 0.0% (201 Bytes)
[#008] sha256:63d569ca2dd64232ea1da3ae97b1edd1b34f5e35dd24faa0b141501c7da285c6 - 0.02% (2.17 KB)
[#009] sha256:e05e359eff54c85317ba25e7340278278bacbf1694af9fa0dbcae0e38886dce5 - 0.0% (121 Bytes)
/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-11-10 10:31:25 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.3.25
2018-11-10 10:31:25 UTC/bin/sh -c #(nop) ENV PG_SHA256=e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
2018-11-10 10:31:26 UTC/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2
2018-11-10 10:31:27 UTC/bin/sh -c #(nop) ENV OSSP_UUID_SHA256=11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
2018-11-10 10:34: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-11-10 10:34:03 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-11-10 10:34:06 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-11-10 10:34:07 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-11-10 10:34: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-11-10 10:34:09 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-11-10 10:34:10 UTC/bin/sh -c #(nop) COPY file:433e69abe3111480b9ab7a66c431215e594d273aab16b3294422463bbdc123b6 in /usr/local/bin/
2018-11-10 10:34:12 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-11-10 10:34:13 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-11-10 10:34:13 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-11-10 10:34:14 UTC/bin/sh -c #(nop) CMD ["postgres"]
2018-11-10 13:59:37 UTC
13.6 MB
en_US.utf8
OSSP_UUID_SHA25611a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
OSSP_UUID_VERSION1.6.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PGDATA/var/lib/postgresql/data
PG_MAJOR9.3
PG_SHA256e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
PG_VERSION9.3.25
[#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:2c524f3c5c9e1802ecc1b9932a2c1ea6f2866375c743e939b42beedca84cf5e1 - 83.81% (11.4 MB)
[#005] sha256:6a8d1970fb386c24d1955780c19f319e61b34e6401728a3197d79dd47a564fec - 0.05% (6.32 KB)
[#006] sha256:69f253a65068b5a30284e38ef4e94c3626952acd736b1fe6f63e17de0182ba02 - 0.0% (130 Bytes)
[#007] sha256:683c58454da19aeea744ae9c08db916be1baa7ce7b1503e70bbe7dae57a8d1bd - 0.0% (170 Bytes)
[#008] sha256:a09674f865013e4253362cff6348e2411cd922bd54650d0b40d5880204cb496d - 0.02% (2.17 KB)
[#009] sha256:ee6230e2897b9cfe7665007e3051bfc70ec328e8735b093be6a6dcc5822ec308 - 0.0% (121 Bytes)
/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-11-10 13:57:39 UTC/bin/sh -c #(nop) ENV PG_VERSION=9.3.25
2018-11-10 13:57:39 UTC/bin/sh -c #(nop) ENV PG_SHA256=e4953e80415d039ccd33d34be74526a090fd585cf93f296cd9c593972504b6db
2018-11-10 13:57:39 UTC/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2
2018-11-10 13:57:40 UTC/bin/sh -c #(nop) ENV OSSP_UUID_SHA256=11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0
2018-11-10 13:59: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 && 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-11-10 13:59:34 UTC/bin/sh -c sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/local/share/postgresql/postgresql.conf.sample
2018-11-10 13:59:34 UTC/bin/sh -c mkdir -p /var/run/postgresql && chown -R postgres:postgres /var/run/postgresql && chmod 2777 /var/run/postgresql
2018-11-10 13:59:35 UTC/bin/sh -c #(nop) ENV PGDATA=/var/lib/postgresql/data
2018-11-10 13:59:35 UTC/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)
2018-11-10 13:59:35 UTC/bin/sh -c #(nop) VOLUME [/var/lib/postgresql/data]
2018-11-10 13:59:36 UTC/bin/sh -c #(nop) COPY file:433e69abe3111480b9ab7a66c431215e594d273aab16b3294422463bbdc123b6 in /usr/local/bin/
2018-11-10 13:59:36 UTC/bin/sh -c ln -s usr/local/bin/docker-entrypoint.sh / # backwards compat
2018-11-10 13:59:37 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2018-11-10 13:59:37 UTC/bin/sh -c #(nop) EXPOSE 5432/tcp
2018-11-10 13:59:37 UTC/bin/sh -c #(nop) CMD ["postgres"]