Tag

library/postgres:10.7-alpine
Content Digest: sha256:44b6994b9577fff8cf5b980ca77a7e65a2ac4d237933be6fdd536c4a83af64b4
Details
Pull Command

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


Manifests
Details
Content Digest

sha256:fc37bca09d63f9b19ff4ae61ce42bab3cf14433ab7f9bdad8883a8ebd97938be

Created

2019-04-25 11:25:53 UTC

Size

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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7


Layers

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

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

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

[#003] sha256:b91c6bc867f882cc2290b119f32142fabc26b9c3fb701a6fe4a03eb677d56201 - 90.28% (24.5 MB)

[#004] sha256:60cb1f8cd2c4f5c39ec0e8f524f2b8d65755cff5cc34c2b2d3dff66487c9ec13 - 0.03% (7.13 KB)

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

[#006] sha256:15366c0b0c4806ac52c4ed075a567bc0381e6c4ca9c29490679edd887f0ec8f4 - 0.0% (175 Bytes)

[#007] sha256:dd8c17a21b31d13bd893439e8f136b7f4f06268779fd553688decd6d7c27dbdb - 0.01% (2.32 KB)

[#008] sha256:0cfe6087181f9c654f13e98bbb4763bc7a8a3b9fe03179aa634812205613c0ae - 0.0% (118 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:31:34 UTC

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

2019-04-10 14:31:34 UTC

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

2019-04-10 14:31:35 UTC

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

2019-04-10 14:34:42 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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 --with-icu && 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:34:43 UTC

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

2019-04-10 14:34:44 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:34:44 UTC

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

2019-04-25 11:25:51 UTC

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

2019-04-25 11:25:52 UTC

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

2019-04-25 11:25:52 UTC

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

2019-04-25 11:25:52 UTC

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

2019-04-25 11:25:53 UTC

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

2019-04-25 11:25:53 UTC

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

2019-04-25 11:25:53 UTC

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

Details
Content Digest

sha256:2a46e2abc7d6474da6e0f3229aaaa21fefc2583f7b595e457d11b8b7ce92c33b

Created

2019-04-25 00:28:10 UTC

Size

26.3 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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7


Layers

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

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

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

[#003] sha256:b01934292a1761b696ce9b523e4c2c532e1d31c9073562ee0933ddda46f5a750 - 89.97% (23.7 MB)

[#004] sha256:3cb710e1ff17fb6fbfa97b4faffa4832d1ee8f99d3629664405efe83210bc4d1 - 0.03% (7.13 KB)

[#005] sha256:8628e8ace9910df9376911ea5b0a34227eed26b6708d349b17620a9b5917464e - 0.0% (130 Bytes)

[#006] sha256:3d3d14f9385b56ad864e91ffe6623936fedfc25d524e9bc7b4b887430cd85b18 - 0.0% (173 Bytes)

[#007] sha256:7d04130c250a406fa50e407038476ba3e771b311f38f744b4011472af89ed429 - 0.01% (2.32 KB)

[#008] sha256:bf0123a54f8c5be5cbfaac8cdb5993af1d37e957d6fa7b69cd67360693f14778 - 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:44:47 UTC

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

2019-04-09 23:44:47 UTC

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

2019-04-09 23:44:47 UTC

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

2019-04-09 23:48: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 icu-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 --with-icu && 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:48:11 UTC

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

2019-04-09 23:48:12 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:48:12 UTC

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

2019-04-25 00:28:08 UTC

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

2019-04-25 00:28:08 UTC

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

2019-04-25 00:28:09 UTC

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

2019-04-25 00:28:09 UTC

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

2019-04-25 00:28:09 UTC

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

2019-04-25 00:28:10 UTC

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

2019-04-25 00:28:10 UTC

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

Details
Content Digest

sha256:73ebaad64faf0481c8c8072266278144fb1d0b6ec4f3be572eee0f1c1aaa3ec4

Created

2019-04-25 08:03:55 UTC

Size

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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7


Layers

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

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

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

[#003] sha256:a826cd102cc460ca2ae7761711242895e9d31d078530e641222bc44e7a1e14d8 - 90.42% (23 MB)

[#004] sha256:dd6f6ef9da1e36c8b47e8a36c6e1674d092cfeefd25e5122781dcb82c369a1b7 - 0.03% (7.13 KB)

[#005] sha256:6d8dbf27966321f29317bc8c4b4cd7b351c1a8af8b88c9ae12e5455c92aade3d - 0.0% (163 Bytes)

[#006] sha256:83ac8a236d757e49a217597d79c202ebd790cfb2fc2c991f7e4b49747da839e2 - 0.0% (205 Bytes)

[#007] sha256:8536789bf7ab99a10e2d4d1b101997acd7205bdeb81e4952d89e223ae7cac353 - 0.01% (2.32 KB)

[#008] sha256:d25075759c40a7fb6a92c3ff5b8c418ab6db84e1c9086a8da069c5013cc6d550 - 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:05:36 UTC

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

2019-04-10 09:05:37 UTC

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

2019-04-10 09:05:37 UTC

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

2019-04-10 09:07:24 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 icu-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 --with-icu && 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:07:25 UTC

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

2019-04-10 09:07:27 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:07:27 UTC

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

2019-04-25 08:03:52 UTC

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

2019-04-25 08:03:52 UTC

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

2019-04-25 08:03:53 UTC

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

2019-04-25 08:03:54 UTC

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

2019-04-25 08:03:54 UTC

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

2019-04-25 08:03:55 UTC

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

2019-04-25 08:03:55 UTC

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

Details
Content Digest

sha256:e722c72df24bbf600b4d142cde2f5ca0ca401c1fe01e3a8cc214d3bf8da40956

Created

2019-04-25 12:04:38 UTC

Size

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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7


Layers

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

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

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

[#003] sha256:0128f68f4f26832cd303e94f4b29cd6213af2eb8f62b8be913c30fd8c60f6ccc - 90.79% (22.2 MB)

[#004] sha256:ccf93d9aabb4cf1fd0ee337cc40a5907e2238697e8d7c3644c0ba43ee6748a6f - 0.03% (7.13 KB)

[#005] sha256:c64ca0934fbe079dedf17b67ccbaa16011bde5dfb1a1ac060f360e7a094bdb6b - 0.0% (163 Bytes)

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

[#007] sha256:8c99ad5055b239bd31a57fe6ea88bba6e5ab03fe61d7ed62de28af8772935773 - 0.01% (2.32 KB)

[#008] sha256:12eb347620d471a5106cf080606ca07fde385723fb3cce6798c529dbe5e465f7 - 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:48:35 UTC

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

2019-04-10 12:48:36 UTC

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

2019-04-10 12:48:36 UTC

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

2019-04-10 12:50:42 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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 --with-icu && 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:50:44 UTC

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

2019-04-10 12:50:46 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:50:46 UTC

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

2019-04-25 12:04:33 UTC

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

2019-04-25 12:04:33 UTC

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

2019-04-25 12:04:34 UTC

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

2019-04-25 12:04:36 UTC

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

2019-04-25 12:04:36 UTC

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

2019-04-25 12:04:37 UTC

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

2019-04-25 12:04:38 UTC

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

Details
Content Digest

sha256:66237aaa76af3d6e692b1d82669ecedf30149b0c2a7e24b7173bdc7727f6cacd

Created

2019-04-25 09:27:58 UTC

Size

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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7


Layers

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

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

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

[#003] sha256:03230132c36b4138ebdcbf49040e7706cfc42bdb63c95254a72954c1c3f8edee - 90.17% (23.6 MB)

[#004] sha256:a4d57ffa551cd400d9c88b638287c6b6bd0641dd86b63d1a5afd8861446873f5 - 0.03% (7.13 KB)

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

[#006] sha256:46058ac37818b85de46134af611b05d38f09411b57443985b21ec05690946897 - 0.0% (172 Bytes)

[#007] sha256:f61ad35532aa244457d09660eb1e03df10a95c33be149834f342c64ee2735250 - 0.01% (2.32 KB)

[#008] sha256:b18b0ed2d09b15f7135e63993e949b55f4ea232a3b12514e75033b8cd5a9200b - 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:31:55 UTC

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

2019-04-10 10:31:56 UTC

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

2019-04-10 10:31:57 UTC

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

2019-04-10 10:42:32 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 icu-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 --with-icu && 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:42:34 UTC

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

2019-04-10 10:42:36 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:42:36 UTC

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

2019-04-25 09:27:49 UTC

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

2019-04-25 09:27:50 UTC

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

2019-04-25 09:27:51 UTC

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

2019-04-25 09:27:55 UTC

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

2019-04-25 09:27:56 UTC

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

2019-04-25 09:27:57 UTC

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

2019-04-25 09:27:58 UTC

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

Details
Content Digest

sha256:abbe2fb239cbfdd62f714f1f15bae9144d9ed4c4a439fea0110d0a6b31972fa8

Created

2019-04-25 09:29:14 UTC

Size

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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7


Layers

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

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

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

[#003] sha256:6cec7fb36b7d22d0189114a3677673544c54e94fae20e3bc0ef0eb219c497809 - 90.33% (24.9 MB)

[#004] sha256:b193be214ae8780ab8eb846578634d90e80453e9102d25593253dbd06cb79509 - 0.03% (7.13 KB)

[#005] sha256:80c40e02e110565fa7f38c47db946df670343a54c750d9c7e9806aab6c2dfa24 - 0.0% (162 Bytes)

[#006] sha256:9601e7f543f2480361cdfdb24ef6bc67215ed54798a1ed01bb0e047ebfe4eefb - 0.0% (202 Bytes)

[#007] sha256:8b0187904d32a199bfd19ac32e73ede45945cd3daf7e855ffdfbe8d010049575 - 0.01% (2.32 KB)

[#008] sha256:873fbea670c5067fab2da6202f3d1a24d0c06fd4068cc5f6d7aab2f88e6b2c13 - 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:44:52 UTC

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

2019-04-10 10:44:54 UTC

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

2019-04-10 10:44:57 UTC

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

2019-04-10 10:48: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 icu-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 --with-icu && 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:48:15 UTC

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

2019-04-10 10:48:25 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:48:29 UTC

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

2019-04-25 09:28:55 UTC

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

2019-04-25 09:28:59 UTC

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

2019-04-25 09:29:00 UTC

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

2019-04-25 09:29:06 UTC

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

2019-04-25 09:29:08 UTC

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

2019-04-25 09:29:11 UTC

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

2019-04-25 09:29:14 UTC

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

Details
Content Digest

sha256:373a3303740b14f5ff1caec63d6d3a19ab58c1a6f71d0c2d08ca2b4d387c9186

Created

2019-04-25 12:26:33 UTC

Size

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

10

PG_SHA256

bfed1065380c1bba927bfe51f23168471373f26e3324cbad859269cc32733ede

PG_VERSION

10.7


Layers

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

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

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

[#003] sha256:daf5658c568c7991749a681f6a4999f3dd69545cac86e12f59ea5097862d1fd4 - 90.67% (23.7 MB)

[#004] sha256:2849d45652e23aba7bbb19b04f5b0859cdee8ef3bd0bd07e60ea411afa453220 - 0.03% (7.13 KB)

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

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

[#007] sha256:f08e049f9c80eddef82dbaf8b046a2ce70a97235588867d507c970e70531ef6f - 0.01% (2.32 KB)

[#008] sha256:9482914cf5d817979326cdd230e6ce2b631545bf6641b04301fafd7871a9a0fe - 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:34:48 UTC

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

2019-04-10 14:34:49 UTC

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

2019-04-10 14:34:49 UTC

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

2019-04-10 14:40: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 icu-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 --with-icu && 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:40:17 UTC

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

2019-04-10 14:40:20 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:40:20 UTC

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

2019-04-25 12:26:31 UTC

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

2019-04-25 12:26:32 UTC

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

2019-04-25 12:26:32 UTC

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

2019-04-25 12:26:33 UTC

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

2019-04-25 12:26:33 UTC

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

2019-04-25 12:26:33 UTC

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

2019-04-25 12:26:33 UTC

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