Tag

library/postgres:11.2-alpine
Content Digest: sha256:ac1494b4cd5c0c6a85209e645fbb84ea186b55fa8c3678ef66dd9e4edf2b0195
Details
Pull Command

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


Manifests
Details
Content Digest

sha256:34a3bac017aa369b1dd2eb1fb7586eeb712477b227437d65772a9a4c4afe6595

Created

2019-04-25 11:25:43 UTC

Size

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

11

PG_SHA256

2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405

PG_VERSION

11.2


Layers

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

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

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

[#003] sha256:a9e028df8db73b5d10648662e130803330ceb2c7fa325232c46694342c356747 - 90.36% (24.7 MB)

[#004] sha256:1bf43993e0fc9ddae17fae190991df919ac74868d554d97edabd498ece8253de - 0.03% (7.35 KB)

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

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

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

[#008] sha256:052e7bdd61960cb17ac94e1b0bb213673f360b333196707f54899c8c7cbfe2ab - 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:28:04 UTC

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

2019-04-10 14:28:04 UTC

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

2019-04-10 14:28:05 UTC

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

2019-04-10 14:31:19 UTC

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

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

2019-04-10 14:31: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:31:21 UTC

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

2019-04-25 11:25:41 UTC

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

2019-04-25 11:25:41 UTC

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

2019-04-25 11:25:41 UTC

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

2019-04-25 11:25:42 UTC

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

2019-04-25 11:25:42 UTC

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

2019-04-25 11:25:42 UTC

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

2019-04-25 11:25:43 UTC

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

Details
Content Digest

sha256:cd1fb3df82521cc63a64591bd30542d04b2e29ed2398aa609d8286b7e9283222

Created

2019-04-25 00:28:00 UTC

Size

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

11

PG_SHA256

2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405

PG_VERSION

11.2


Layers

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

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

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

[#003] sha256:823ce70c3252c7fde4e22c1db495d1b8d88b6452a763ee0ebd58bb6b40aeeae8 - 90.05% (23.9 MB)

[#004] sha256:a92a31ecd32a634d35d7f3818fce31f45d1619860d7f9540abbb062e95ea4620 - 0.03% (7.34 KB)

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

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

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

[#008] sha256:b3f69561e369596c7d1f5eaead43aa7942b12499c3f8b90075dc085391fa6fc1 - 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:41:00 UTC

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

2019-04-09 23:41:00 UTC

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

2019-04-09 23:41:00 UTC

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

2019-04-09 23:44:28 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:44:29 UTC

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

2019-04-09 23:44:29 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:44:30 UTC

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

2019-04-25 00:27:58 UTC

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

2019-04-25 00:27:58 UTC

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

2019-04-25 00:27:58 UTC

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

2019-04-25 00:27:59 UTC

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

2019-04-25 00:27:59 UTC

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

2019-04-25 00:27:59 UTC

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

2019-04-25 00:28:00 UTC

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

Details
Content Digest

sha256:79469e337ff972aad7b833b4739df13097a162902a9dac8ed2deabf19e9bbce5

Created

2019-04-25 08:03:47 UTC

Size

25.6 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

11

PG_SHA256

2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405

PG_VERSION

11.2


Layers

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

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

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

[#003] sha256:c7267cab417347629f098d57e82964f448ecf4ef099039189dd6809b6ebaf7b1 - 90.49% (23.2 MB)

[#004] sha256:0e3ed19dad3792c602ff7453bb4b9dac1dd819180b6b0193f8d1c7ca6627e2e8 - 0.03% (7.35 KB)

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

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

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

[#008] sha256:48ce7c8970bb423688b8f9ff080c36d871447fcf047fa1067d0535dbfc4dd5a0 - 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:03:10 UTC

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

2019-04-10 09:03:11 UTC

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

2019-04-10 09:03:11 UTC

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

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

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

2019-04-10 09:05: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 09:05:13 UTC

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

2019-04-25 08:03:43 UTC

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

2019-04-25 08:03:44 UTC

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

2019-04-25 08:03:44 UTC

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

2019-04-25 08:03:46 UTC

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

2019-04-25 08:03:46 UTC

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

2019-04-25 08:03:46 UTC

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

2019-04-25 08:03:47 UTC

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

Details
Content Digest

sha256:675f046465ed79fc3688104a21755878f1e58a6fae5b9d24f90af57a48c06ef1

Created

2019-04-25 12:04:12 UTC

Size

24.6 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

11

PG_SHA256

2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405

PG_VERSION

11.2


Layers

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

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

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

[#003] sha256:adbf2a82d0e829a3b02e1d4589afd5ab709af6d617352c4fa8af2b1f16f6d8b2 - 90.86% (22.4 MB)

[#004] sha256:2e050b3dfd6180d34f8dad740081ff780035028d9812eea3a307260f73257259 - 0.03% (7.34 KB)

[#005] sha256:3d7d26e3cbf3baad36cfbe0ca2943f546a8832f964d9227fa1a0d5736981069b - 0.0% (161 Bytes)

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

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

[#008] sha256:ec59e90378d255ba50440369cf29956a7a7ffdc5fd0fddff5d2d744752b235de - 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:46:22 UTC

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

2019-04-10 12:46:22 UTC

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

2019-04-10 12:46:23 UTC

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

2019-04-10 12:48:20 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:48:22 UTC

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

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

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

2019-04-25 12:04:08 UTC

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

2019-04-25 12:04:08 UTC

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

2019-04-25 12:04:09 UTC

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

2019-04-25 12:04:11 UTC

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

2019-04-25 12:04:11 UTC

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

2019-04-25 12:04:12 UTC

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

2019-04-25 12:04:12 UTC

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

Details
Content Digest

sha256:651bc73b441243a812e95691458c5007923bcaf2cfbe4795aa5a82471c21bef2

Created

2019-04-25 09:27:14 UTC

Size

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

11

PG_SHA256

2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405

PG_VERSION

11.2


Layers

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

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

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

[#003] sha256:0a1ecfb11136465347bcf6f47b5d5554be2b57648e0317fc00283a8a49541563 - 90.25% (23.8 MB)

[#004] sha256:0cc66d4a8a5b436597b327b6c77c18f1f8a0bdb536beded73ab7fdd4343aea4a - 0.03% (7.35 KB)

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

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

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

[#008] sha256:dd936443c28943eafb5df6c7cf2935f18a0d2e0078a1657b69cf0b8ed5106e9a - 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:22:51 UTC

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

2019-04-10 10:22:52 UTC

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

2019-04-10 10:22:53 UTC

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

2019-04-10 10:31:21 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:31:23 UTC

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

2019-04-10 10:31: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:31:26 UTC

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

2019-04-25 09:27:04 UTC

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

2019-04-25 09:27:05 UTC

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

2019-04-25 09:27:06 UTC

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

2019-04-25 09:27:10 UTC

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

2019-04-25 09:27:11 UTC

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

2019-04-25 09:27:13 UTC

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

2019-04-25 09:27:14 UTC

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

Details
Content Digest

sha256:ac49dfe7c115053dd5b15971b6079facf1e05d3fae1ac4a93af41788dcea9168

Created

2019-04-25 09:28:14 UTC

Size

27.8 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

11

PG_SHA256

2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405

PG_VERSION

11.2


Layers

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

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

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

[#003] sha256:07f35cf245946c5051e1592e1a416978bba0e0c86a5c5ad4f04d34298197d81d - 90.41% (25.1 MB)

[#004] sha256:e1d688fc8fafcc3564065a410678ce55ae904ca1a33d2071cb87620669af4a0c - 0.03% (7.34 KB)

[#005] sha256:48dc0f94d54fb792f122fa206b78df36fb5ad6bb21619607e8c57ee1469f4c14 - 0.0% (161 Bytes)

[#006] sha256:6c2559a1647f73f385bc38e11a52c4e1c4676521f5e8072c74fd1a0d9a1c9372 - 0.0% (206 Bytes)

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

[#008] sha256:de984bd6b78e13749cff392024e16d66311475ca69a76b706f922195f7e11671 - 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:40:34 UTC

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

2019-04-10 10:40:36 UTC

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

2019-04-10 10:40:38 UTC

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

2019-04-10 10:43:45 UTC

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

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

2019-04-10 10:44:07 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:44:12 UTC

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

2019-04-25 09:27:59 UTC

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

2019-04-25 09:28:01 UTC

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

2019-04-25 09:28:03 UTC

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

2019-04-25 09:28:07 UTC

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

2019-04-25 09:28:10 UTC

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

2019-04-25 09:28:12 UTC

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

2019-04-25 09:28:14 UTC

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

Details
Content Digest

sha256:232b923299a6b05fe671fc724dca8452a95eac23f849fc1fa12677a99f0dc734

Created

2019-04-25 12:26:21 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

11

PG_SHA256

2676b9ce09c21978032070b6794696e0aa5a476e3d21d60afc036dc0a9c09405

PG_VERSION

11.2


Layers

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

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

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

[#003] sha256:bd0bb3252fe210be189dfd686e1a5e888d7e9b88225788dd1168456dd955ccbf - 90.74% (23.9 MB)

[#004] sha256:6a73acfbce2e8517212323c610a948b90e535410c205d6c6183a04521c01d1d0 - 0.03% (7.35 KB)

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

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

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

[#008] sha256:8b31808ecfd172bfefc5b1de87ffbc3bafbcfcf918e1f88a1d5c37bb1fb73b2a - 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:27:06 UTC

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

2019-04-10 14:27:07 UTC

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

2019-04-10 14:27:08 UTC

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

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

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

2019-04-25 12:26:19 UTC

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

2019-04-25 12:26:20 UTC

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

2019-04-25 12:26:20 UTC

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

2019-04-25 12:26:21 UTC

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

2019-04-25 12:26:21 UTC

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

2019-04-25 12:26:21 UTC

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

2019-04-25 12:26:21 UTC

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