Tag

library/postgres:9.5.16-alpine
Content Digest: sha256:bfd2f508b569a32ee53f5f8c15c8d6d9d3015590a4537d4ba76038b30f0eec0a
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.5.16-alpine


Manifests
Details
Content Digest

sha256:6af20c29b7c84935527afba34d7976bbfcc4408ed3bdfb8a3963fe9d71e9fccc

Created

2019-04-25 11:26:13 UTC

Size

14.1 MB


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

PG_SHA256

a4576c95d4dcee8d4b7835b333d38e909848222e4b87895878bb1c026206e131

PG_VERSION

9.5.16


Layers

[#000] sha256:9a81e6a1a3b4f174d22173a96692c9aeffaefcd00f40607d508951a2b14d6f1f - 18.67% (2.62 MB)

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

[#002] sha256:60005ea8fc190aec4ebdcb14ff51e60c24531718c56530053e1321be67ccc37a - 0.0% (115 Bytes)

[#003] sha256:f09fdca38afe6e1a3484f2079c03e39454d02a8aea168886d8a6a5389af78e48 - 81.26% (11.4 MB)

[#004] sha256:3d70b28d1883103cd6e3d33dcb9627bc964e6e40fba3cc18babe211676362ac9 - 0.05% (6.67 KB)

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

[#006] sha256:d30e01fca58ca0df33e6382f3fec75e8991e7b4acc89c53669e29b05c7d5be73 - 0.0% (174 Bytes)

[#007] sha256:215cb9a0ed1e4c09e2fc76386a16bde1657ccee6b99e036747b9a6259e72034c - 0.02% (2.32 KB)

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


History
2019-04-10 10:38:55 UTC

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

2019-04-10 10:38:55 UTC

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

2019-04-10 14:28:03 UTC

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

2019-04-10 14:28:03 UTC

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

2019-04-10 14:28:04 UTC

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

2019-04-10 14:38:22 UTC

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

2019-04-10 14:38:22 UTC

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

2019-04-10 14:38:23 UTC

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

2019-04-10 14:41:06 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

2019-04-10 14:41:07 UTC

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

2019-04-10 14:41:08 UTC

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

2019-04-10 14:41:08 UTC

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

2019-04-25 11:26:11 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2019-04-25 11:26:12 UTC

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

2019-04-25 11:26:12 UTC

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

2019-04-25 11:26:13 UTC

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

2019-04-25 11:26:13 UTC

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

2019-04-25 11:26:13 UTC

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

2019-04-25 11:26:13 UTC

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

Details
Content Digest

sha256:e2ac3f43a7dbf2235b6f2d7138c058ae988d53bc55d3a35db74b587caa1530f9

Created

2019-04-25 00:28:31 UTC

Size

13.5 MB


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

PG_SHA256

a4576c95d4dcee8d4b7835b333d38e909848222e4b87895878bb1c026206e131

PG_VERSION

9.5.16


Layers

[#000] sha256:bdf0201b3a056acc4d6062cc88cd8a4ad5979983bfb640f15a145e09ed985f92 - 19.47% (2.63 MB)

[#001] sha256:365f27dc05d7a3562de7526a4c5cca44d00d6bced5c9ddbb4f21e2db97ae492f - 0.0% (148 Bytes)

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

[#003] sha256:0bbc2b26c3afe3cd664219073cc0888d0d0fe9a3d4abc27dc82a864180858317 - 80.46% (10.9 MB)

[#004] sha256:2a9ccc177a0c15bf47e0a0c8986cd0e6ea81f4adf19ed0fcb04a1e9134959fd6 - 0.05% (6.67 KB)

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

[#006] sha256:818d56b3d43c1f5fb9c3f4605ed4212816c9efde875994f67a7cd0749ef7e17e - 0.0% (174 Bytes)

[#007] sha256:0d970775d6714a728c5576fa26230d72b662a046051ccb46cc79e2a417df06a9 - 0.02% (2.32 KB)

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


History
2019-04-09 23:20:18 UTC

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

2019-04-09 23:20:18 UTC

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

2019-04-09 23:40:59 UTC

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

2019-04-09 23:40:59 UTC

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

2019-04-09 23:41:00 UTC

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

2019-04-09 23:51:51 UTC

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

2019-04-09 23:51:51 UTC

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

2019-04-09 23:51:51 UTC

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

2019-04-09 23:55:00 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-04-09 23:55:01 UTC

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

2019-04-09 23:55:02 UTC

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

2019-04-09 23:55:02 UTC

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

2019-04-25 00:28:29 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2019-04-25 00:28:29 UTC

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

2019-04-25 00:28:29 UTC

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

2019-04-25 00:28:30 UTC

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

2019-04-25 00:28:30 UTC

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

2019-04-25 00:28:30 UTC

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

2019-04-25 00:28:31 UTC

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

Details
Content Digest

sha256:7024e59b0e932eea8a7bb4bff39463e03f1a2fd39fb3cba988fc6bbdfc0b99c0

Created

2019-04-25 08:04:12 UTC

Size

12.9 MB


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

PG_SHA256

a4576c95d4dcee8d4b7835b333d38e909848222e4b87895878bb1c026206e131

PG_VERSION

9.5.16


Layers

[#000] sha256:9d34ec1d9f3e63864b68d564a237efd2e3778f39a85961f7bdcb3937084070e1 - 18.81% (2.43 MB)

[#001] sha256:1e3510403378b09eb87d6996a614a8a3dc8e31725e6b680577a5e59572fefeb7 - 0.0% (182 Bytes)

[#002] sha256:24d941d2aacff6d14e3e8f915884b83b36359f5c15182aee7c59dd57ea09b34c - 0.0% (149 Bytes)

[#003] sha256:a48f7837b0e41ac63759a789e608c64ffc74190f715fae8a1081a2110695c0d1 - 81.11% (10.5 MB)

[#004] sha256:50f03892dfbad43cdb89c2713beb4d3822c0eac1f3dec6ac043febd27fd253e3 - 0.05% (6.67 KB)

[#005] sha256:12d9d2d119162c2f36114c550eab4efc45e25160b7b9fb935afc622463e7c40c - 0.0% (161 Bytes)

[#006] sha256:f28df4ed646764db9e8d1ac052f5f13117bfb5fbb1ff2a2da047f436f5f4a91c - 0.0% (204 Bytes)

[#007] sha256:c5f6b0d6b70bc2b94755986f06e575e1b8446c52b4092680b9c32302e18fbd2c - 0.02% (2.32 KB)

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


History
2019-04-10 07:49:49 UTC

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

2019-04-10 07:49:49 UTC

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

2019-04-10 09:03:08 UTC

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

2019-04-10 09:03:08 UTC

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

2019-04-10 09:03:10 UTC

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

2019-04-10 09:09:50 UTC

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

2019-04-10 09:09:50 UTC

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

2019-04-10 09:09:50 UTC

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

2019-04-10 09:11:25 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

2019-04-10 09:11:27 UTC

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

2019-04-10 09:11:28 UTC

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

2019-04-10 09:11:29 UTC

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

2019-04-25 08:04:08 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2019-04-25 08:04:09 UTC

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

2019-04-25 08:04:09 UTC

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

2019-04-25 08:04:10 UTC

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

2019-04-25 08:04:11 UTC

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

2019-04-25 08:04:11 UTC

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

2019-04-25 08:04:12 UTC

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

Details
Content Digest

sha256:6e8dea09969c86d951624705e392355458d918966648e565614db6a25bb1fe1c

Created

2019-04-25 12:05:21 UTC

Size

12.1 MB


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

PG_SHA256

a4576c95d4dcee8d4b7835b333d38e909848222e4b87895878bb1c026206e131

PG_VERSION

9.5.16


Layers

[#000] sha256:c2a5cdd4aa08146b4516cc95f6b461f2994250a819b3e6f75f23fa2a8c1b1744 - 18.5% (2.24 MB)

[#001] sha256:7d279db916c7957a1cea16fb73fa11ee1839092769f8c04e25bb8af5a8737491 - 0.0% (180 Bytes)

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

[#003] sha256:296970dfbc5bf4b34126025809cac22f2cf3699b02319f43ddb85b7ebab0c00d - 81.42% (9.86 MB)

[#004] sha256:b414af84e5d0bca39daeb68510a60874a711e816758158ea51a37c36ba3974e1 - 0.05% (6.68 KB)

[#005] sha256:75256654baeee2530a00508ad0c6367068afa83913105553b87641bdb4f83732 - 0.0% (162 Bytes)

[#006] sha256:5010dc7f0b39ec9e1af107366f31a851b8e76d0bdfd25078bd9f8d6834293e5f - 0.0% (204 Bytes)

[#007] sha256:fc3ddaed8635b0b3644c7b8b8bd8ee4acc3a8cdf009ede168d2f1adfb64d2c4c - 0.02% (2.32 KB)

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


History
2019-04-10 11:57:47 UTC

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

2019-04-10 11:57:48 UTC

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

2019-04-10 12:46:19 UTC

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

2019-04-10 12:46:19 UTC

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

2019-04-10 12:46:21 UTC

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

2019-04-10 12:53:11 UTC

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

2019-04-10 12:53:12 UTC

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

2019-04-10 12:53:12 UTC

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

2019-04-10 12:55:13 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

2019-04-10 12:55:15 UTC

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

2019-04-10 12:55:17 UTC

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

2019-04-10 12:55:17 UTC

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

2019-04-25 12:05:16 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2019-04-25 12:05:17 UTC

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

2019-04-25 12:05:17 UTC

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

2019-04-25 12:05:19 UTC

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

2019-04-25 12:05:20 UTC

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

2019-04-25 12:05:20 UTC

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

2019-04-25 12:05:21 UTC

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

Details
Content Digest

sha256:513196a539ca9d4de29fa48934f8d50ae0cc8f0e6f87008511a7b5b9d633183a

Created

2019-04-25 09:29:26 UTC

Size

13.4 MB


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

PG_SHA256

a4576c95d4dcee8d4b7835b333d38e909848222e4b87895878bb1c026206e131

PG_VERSION

9.5.16


Layers

[#000] sha256:6f37394be673296a0fdc21b819c5df40431baf7d3af121bee451726dd1457493 - 19.2% (2.56 MB)

[#001] sha256:0fea16c00f90d0af6592e1608d6e3318a5055868310f316ebee261e89b982b1e - 0.0% (148 Bytes)

[#002] sha256:8b041547846a3b396a5b0f7f676273100de8d96c1f2671a68f884085274c0c47 - 0.0% (115 Bytes)

[#003] sha256:6a243ea7bf40b35e05f62843071e6c8ba665e1f04d88ee064502e3bceddd96b4 - 80.73% (10.8 MB)

[#004] sha256:5468c0341fbfbbc6abe447863bf874a3a1b842fb619ba4964e40f3991dacbdd6 - 0.05% (6.67 KB)

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

[#006] sha256:5cbb99585eb080373201cf01dae9c13b73e582b5bd2774b33e781de54a00ccbb - 0.0% (173 Bytes)

[#007] sha256:9cd3f8508aa5759d83444956eb1df2f769f79963d099df21fdce441e8cda838c - 0.02% (2.32 KB)

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


History
2019-04-10 08:49:11 UTC

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

2019-04-10 08:49:12 UTC

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

2019-04-10 10:22:45 UTC

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

2019-04-10 10:22:46 UTC

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

2019-04-10 10:22:50 UTC

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

2019-04-10 10:50:35 UTC

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

2019-04-10 10:50:36 UTC

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

2019-04-10 10:50:37 UTC

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

2019-04-10 10:59:07 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

2019-04-10 10:59:10 UTC

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

2019-04-10 10:59:12 UTC

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

2019-04-10 10:59:12 UTC

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

2019-04-25 09:29:15 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2019-04-25 09:29:16 UTC

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

2019-04-25 09:29:17 UTC

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

2019-04-25 09:29:23 UTC

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

2019-04-25 09:29:24 UTC

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

2019-04-25 09:29:25 UTC

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

2019-04-25 09:29:26 UTC

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

Details
Content Digest

sha256:6d76b7a0053c482c5781e2394d0f71515198282dc5376566e0ef84ac5260b390

Created

2019-04-25 09:32:07 UTC

Size

14.5 MB


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

PG_SHA256

a4576c95d4dcee8d4b7835b333d38e909848222e4b87895878bb1c026206e131

PG_VERSION

9.5.16


Layers

[#000] sha256:fe0f92a92ee06f38abf50fefd22331ac42262e3872ecd2d7ddfa7c24ab71a53a - 18.23% (2.65 MB)

[#001] sha256:72fadc09892703ded74da3266e56d7cf5631a32b6afc741c5d73cd181c7fcf26 - 0.0% (180 Bytes)

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

[#003] sha256:23787fe979e42a73b992aad5c6ca9a7672a53b5a7d470f1be2dcb4eb25f914e6 - 81.7% (11.9 MB)

[#004] sha256:efc381f247ab6e847325bb14649b49b380f1f41a32a728a5f9afa62c288f5965 - 0.04% (6.68 KB)

[#005] sha256:72348674f8704d6e23467367cd8b1f2dc0c700067621f573cd30551f827304dd - 0.0% (162 Bytes)

[#006] sha256:00733c5d7cb5ece2d4895e1f084e2cb63e495fa5bc57a5242e12a7c8b77e64c6 - 0.0% (202 Bytes)

[#007] sha256:fa5213b8ce2da19df18ae265c9cc37ba43d79e50d203f6467b463c6bd517914e - 0.02% (2.32 KB)

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


History
2019-04-10 08:27:30 UTC

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

2019-04-10 08:27:33 UTC

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

2019-04-10 10:40:21 UTC

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

2019-04-10 10:40:26 UTC

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

2019-04-10 10:40:31 UTC

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

2019-04-10 10:53:48 UTC

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

2019-04-10 10:53:53 UTC

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

2019-04-10 10:53:55 UTC

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

2019-04-10 10:57: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 && 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

2019-04-10 10:57:13 UTC

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

2019-04-10 10:57:24 UTC

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

2019-04-10 10:57:29 UTC

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

2019-04-25 09:31:44 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2019-04-25 09:31:48 UTC

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

2019-04-25 09:31:50 UTC

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

2019-04-25 09:31:57 UTC

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

2019-04-25 09:32:01 UTC

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

2019-04-25 09:32:05 UTC

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

2019-04-25 09:32:07 UTC

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

Details
Content Digest

sha256:05000a9b6b6609e310201615f13981c6ec37886e428ffc289f7a23447180ca8f

Created

2019-04-25 12:27:01 UTC

Size

13.2 MB


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

PG_SHA256

a4576c95d4dcee8d4b7835b333d38e909848222e4b87895878bb1c026206e131

PG_VERSION

9.5.16


Layers

[#000] sha256:5b51e37a522c2e7cd3c67e8a3e5500b45189ea6698e9fdaed7f5d48282326633 - 18.41% (2.43 MB)

[#001] sha256:7e5a42be124b5c35b80d686de80099c7a29e62671dde52357608c5bb43155289 - 0.0% (148 Bytes)

[#002] sha256:3c64b23a57d110ce8601a192addcebc6d5707db8c43d027616541b6f338c1624 - 0.0% (115 Bytes)

[#003] sha256:db40a1a65506707768d7fbabfa23ea04a1347b78f6c3c479334a38616cb2b9c4 - 81.52% (10.7 MB)

[#004] sha256:f3e2f6ac62e5d9e4318070f53275620fefbbbc14888e8e75c421c876a13ba64d - 0.05% (6.67 KB)

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

[#006] sha256:adcf9626cc63dd9fa1434963be4dcc42b28da0e9ec9db7400e035ad78da701e7 - 0.0% (174 Bytes)

[#007] sha256:89ebfe986a5e862cfc1ec4d3a791ef8b3649890afc7d5d2f7c3cc0f742903f56 - 0.02% (2.32 KB)

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


History
2019-04-10 11:42:23 UTC

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

2019-04-10 11:42:23 UTC

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

2019-04-10 14:27:01 UTC

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

2019-04-10 14:27:02 UTC

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

2019-04-10 14:27:05 UTC

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

2019-04-10 14:47:46 UTC

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

2019-04-10 14:47:47 UTC

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

2019-04-10 14:47:47 UTC

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

2019-04-10 14:52:18 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

2019-04-10 14:52:21 UTC

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

2019-04-10 14:52:24 UTC

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

2019-04-10 14:52:25 UTC

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

2019-04-25 12:26:59 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA"

2019-04-25 12:26:59 UTC

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

2019-04-25 12:26:59 UTC

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

2019-04-25 12:27:00 UTC

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

2019-04-25 12:27:00 UTC

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

2019-04-25 12:27:00 UTC

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

2019-04-25 12:27:01 UTC

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