Tag

library/postgres:9.5.18-alpine
Content Digest: sha256:a29824daf0373e15694e3cbdec196bdf6d700e5b7077713af19e516003da4545
Details
Pull Command

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


Manifests
Details
Content Digest

sha256:b6b293ad9813298fce8b5a2ecfa8bdf55e6c2c9fe32faaa7018656d6bc989e1c

Created

2019-07-12 03:33:44 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

dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd

PG_VERSION

9.5.18


Layers

[#000] sha256:64a1fba56ddaccf48996ac9a3f28b6d623660aaf2d708e264e446cc834dacfab - 18.74% (2.65 MB)

[#001] sha256:17ed944b01529772ff24d23c529447b6235bff8b18faeae3bd4f8302cde1fc7e - 0.0% (147 Bytes)

[#002] sha256:c58f3aadd0ce5f8e6405db5e1fc91c81338b40493e656938380f7b93ec84796f - 0.0% (113 Bytes)

[#003] sha256:aa0155840e2a3efbb26e4781dd03f8bcebc4c7a324bccb9753716525bc976d88 - 81.19% (11.5 MB)

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

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

[#006] sha256:e3fcff30033a71913eaea3dcc36d0c74628810bc4a4a6d9074d23828452af62f - 0.0% (163 Bytes)

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

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


History
2019-07-11 21:39:21 UTC

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

2019-07-11 21:39:21 UTC

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

2019-07-12 03: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-07-12 03:03:09 UTC

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

2019-07-12 03:03:10 UTC

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

2019-07-12 03:28:46 UTC

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

2019-07-12 03:28:46 UTC

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

2019-07-12 03:28:47 UTC

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

2019-07-12 03:33:37 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 linux-headers 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-07-12 03:33:38 UTC

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

2019-07-12 03:33:39 UTC

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

2019-07-12 03:33:40 UTC

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

2019-07-12 03:33:41 UTC

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

2019-07-12 03:33:41 UTC

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

2019-07-12 03:33:42 UTC

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

2019-07-12 03:33:43 UTC

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

2019-07-12 03:33:43 UTC

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

2019-07-12 03:33:44 UTC

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

2019-07-12 03:33:44 UTC

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

Details
Content Digest

sha256:ddecd1f2b63ae0b5c9d274659207440e46881678ae7b234d5281aec51880af85

Created

2019-07-12 00:47:32 UTC

Size

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

9.5

PG_SHA256

dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd

PG_VERSION

9.5.18


Layers

[#000] sha256:0503825856099e6adb39c8297af09547f69684b7016b7f3680ed801aa310baaa - 19.57% (2.66 MB)

[#001] sha256:9a0b1fe656d18b0562ac6a83ff4e83a737500ad3eebdf02cb659ba559936e6fc - 0.0% (146 Bytes)

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

[#003] sha256:03d4a435920c50d9d778cb7a8272eef175aff7410ce1ca6ca93ffdd74f9406ef - 80.36% (10.9 MB)

[#004] sha256:7421416a94f16a1f757329c5965d76867d78b208365ebeccc1f21f7d0053569d - 0.05% (6.66 KB)

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

[#006] sha256:ce050448677c87fa90b247c876553d27983fc77cf4bf0e1d12bda4f64b234781 - 0.0% (163 Bytes)

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

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


History
2019-07-11 22:20:52 UTC

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

2019-07-11 22:20:52 UTC

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

2019-07-12 00:10: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-07-12 00:10:59 UTC

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

2019-07-12 00:11:00 UTC

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

2019-07-12 00:39:06 UTC

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

2019-07-12 00:39:06 UTC

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

2019-07-12 00:39:06 UTC

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

2019-07-12 00:47:26 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 linux-headers 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-07-12 00:47:27 UTC

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

2019-07-12 00:47:28 UTC

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

2019-07-12 00:47:28 UTC

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

2019-07-12 00:47:29 UTC

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

2019-07-12 00:47:29 UTC

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

2019-07-12 00:47:30 UTC

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

2019-07-12 00:47:31 UTC

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

2019-07-12 00:47:31 UTC

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

2019-07-12 00:47:31 UTC

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

2019-07-12 00:47:32 UTC

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

Details
Content Digest

sha256:ee3012669c7bb10c81f0c8ebf4ab13275ae34ce19293f5765c4a58fdf15d2280

Created

2019-08-06 00:12:25 UTC

Size

13 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

dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd

PG_VERSION

9.5.18


Layers

[#000] sha256:5308e891d68f16cb976f93556acc9b776c9534f19ede4b9c843c934e6a7b4a18 - 18.88% (2.45 MB)

[#001] sha256:ecb3defa21db4ad4070096e20b19e3cdd43a109634bba79cdda181d2f6588838 - 0.0% (179 Bytes)

[#002] sha256:6254b9d7176c0e78d8e551a707f41763cb1c778e7038513f1181940a5295b590 - 0.0% (147 Bytes)

[#003] sha256:9d89a2c18810b7ac9fd724eb1043bc0afaeaf9be825776af67e900e69edc8269 - 81.05% (10.5 MB)

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

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

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

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

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


History
2019-07-11 21:49:55 UTC

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

2019-07-11 21:49:55 UTC

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

2019-07-11 22:15:23 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-07-11 22:15:25 UTC

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

2019-07-11 22:15:30 UTC

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

2019-08-06 00:10:36 UTC

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

2019-08-06 00:10:36 UTC

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

2019-08-06 00:10:36 UTC

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

2019-08-06 00:12:14 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 linux-headers 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-08-06 00:12:17 UTC

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

2019-08-06 00:12:18 UTC

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

2019-08-06 00:12:19 UTC

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

2019-08-06 00:12:21 UTC

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

2019-08-06 00:12:21 UTC

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

2019-08-06 00:12:22 UTC

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

2019-08-06 00:12:23 UTC

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

2019-08-06 00:12:24 UTC

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

2019-08-06 00:12:24 UTC

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

2019-08-06 00:12:25 UTC

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

Details
Content Digest

sha256:0e266e1ac18398a6bcfccb6ce4f5ce9623a52b0464288b4202a6d35372a21638

Created

2019-08-06 00:25:06 UTC

Size

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

dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd

PG_VERSION

9.5.18


Layers

[#000] sha256:50e6a8f95d08735cf973d06f486e8d4906f0a8009fede2aa1b1d03accbda9281 - 18.57% (2.27 MB)

[#001] sha256:a6bd6c57d7522e713a27d9ec67ec17db670614dbce96a6898785fb11200008b6 - 0.0% (179 Bytes)

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

[#003] sha256:e3dcaf063f82fecbb8894b3caf0f984aefcadf8601578d47050ac59af6592f49 - 81.35% (9.92 MB)

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

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

[#006] sha256:6cd1e30d84a9c83bca321bffbc20d182459ca67bf4adf14b2d8e0d8bcdca8437 - 0.0% (195 Bytes)

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

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


History
2019-07-11 21:57:38 UTC

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

2019-07-11 21:57:39 UTC

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

2019-08-06 00:13:55 UTC

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

2019-08-06 00:13:55 UTC

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

2019-08-06 00:13:56 UTC

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

2019-08-06 00:23:23 UTC

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

2019-08-06 00:23:24 UTC

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

2019-08-06 00:23:24 UTC

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

2019-08-06 00:24:59 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 linux-headers 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-08-06 00:25:01 UTC

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

2019-08-06 00:25:02 UTC

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

2019-08-06 00:25:02 UTC

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

2019-08-06 00:25:03 UTC

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

2019-08-06 00:25:04 UTC

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

2019-08-06 00:25:04 UTC

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

2019-08-06 00:25:05 UTC

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

2019-08-06 00:25:06 UTC

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

2019-08-06 00:25:06 UTC

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

2019-08-06 00:25:06 UTC

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

Details
Content Digest

sha256:0d31abae77004ece9655c3c5a0cf15af62fd7e56d881f18ea4d1882543c30408

Created

2019-07-12 14:54:00 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

dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd

PG_VERSION

9.5.18


Layers

[#000] sha256:31c29410a04898f7aed30f526990fced7d2a158513930c32fb05dbed3e8518da - 19.27% (2.59 MB)

[#001] sha256:51c96026e78e4ac0f290dae7d97da2939252cff68d4b1d5718281a869f8f24c2 - 0.0% (178 Bytes)

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

[#003] sha256:2a78dd0e347dc22ceb2bc346770d41a1c8dec0d25a33d58650da3fa155e3ecfc - 80.66% (10.8 MB)

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

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

[#006] sha256:24045a880de71a0491abd7070a8a187e0c54c989b9128e851e217e4732693c83 - 0.0% (192 Bytes)

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

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


History
2019-07-11 21:39:41 UTC

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

2019-07-11 21:39:41 UTC

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

2019-07-11 23:02: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-07-11 23:02:08 UTC

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

2019-07-11 23:02:09 UTC

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

2019-07-12 14:51:30 UTC

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

2019-07-12 14:51:31 UTC

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

2019-07-12 14:51:32 UTC

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

2019-07-12 14:53:48 UTC

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

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

2019-07-12 14:53:54 UTC

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

2019-07-12 14:53:54 UTC

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

2019-07-12 14:53:56 UTC

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

2019-07-12 14:53:57 UTC

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

2019-07-12 14:53:57 UTC

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

2019-07-12 14:53:59 UTC

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

2019-07-12 14:53:59 UTC

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

2019-07-12 14:54:00 UTC

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

2019-07-12 14:54:00 UTC

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

Details
Content Digest

sha256:06ae5630275def5d1d17f7b10efcafdeec3e887a735250a14ab349c285c490ee

Created

2019-07-12 00:34:01 UTC

Size

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

9.5

PG_SHA256

dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd

PG_VERSION

9.5.18


Layers

[#000] sha256:f4cdf4d5cd47c3a8fe7637d32e8739c247cbcefc2502104b3b9d53cf7a482ee9 - 18.28% (2.68 MB)

[#001] sha256:53e0a1eaa4c9504f17a3fa0ef748fac48ce2616fba26c206df05ab012ff224bc - 0.0% (178 Bytes)

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

[#003] sha256:b499a0bdd45bf737869d7aa402977c30ac6dfa5f8d6fc5ff41c7567fa71e7767 - 81.65% (12 MB)

[#004] sha256:c3f332ad090ed1199bf83ea5d36e0f6bf45bf02f83a06fb1d51598ac4931c3f2 - 0.04% (6.67 KB)

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

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

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

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


History
2019-07-11 22:28:10 UTC

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

2019-07-11 22:28:13 UTC

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

2019-07-12 00:11:22 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-07-12 00:11:28 UTC

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

2019-07-12 00:11:41 UTC

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

2019-07-12 00:30:23 UTC

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

2019-07-12 00:30:25 UTC

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

2019-07-12 00:30:27 UTC

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

2019-07-12 00:33: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 linux-headers 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-07-12 00:33:21 UTC

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

2019-07-12 00:33:26 UTC

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

2019-07-12 00:33:27 UTC

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

2019-07-12 00:33:34 UTC

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

2019-07-12 00:33:38 UTC

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

2019-07-12 00:33:43 UTC

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

2019-07-12 00:33:53 UTC

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

2019-07-12 00:33:56 UTC

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

2019-07-12 00:33:58 UTC

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

2019-07-12 00:34:01 UTC

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

Details
Content Digest

sha256:954e59d331c5cd8e12a308df66e067ea0414a1ac3a6e6f71db2a3fd9fc8a3b6d

Created

2019-07-11 23:21:42 UTC

Size

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

9.5

PG_SHA256

dfc940487ed5acd5f657d6d02d53a18f9699888d4b0f820071e4564ed2f9f3dd

PG_VERSION

9.5.18


Layers

[#000] sha256:a5009044856cb7ec46c0bdccbfae22ed15a7024bee22609e76b16cbb9436ce8a - 18.48% (2.45 MB)

[#001] sha256:5b5ac024be187dba41f2e926dec085a07102a8b78dba6e87ec81cc3fe1307fc0 - 0.0% (146 Bytes)

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

[#003] sha256:832ffe38bf4bc9ab7a8074a9f8bea7388367fff6cc2736e084169358209ed242 - 81.44% (10.8 MB)

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

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

[#006] sha256:caf0262df27184beebabc7d5ce0f882540b9c6881fd5a5da98e3a11bd270087e - 0.0% (163 Bytes)

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

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


History
2019-07-11 21:42:03 UTC

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

2019-07-11 21:42:04 UTC

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

2019-07-11 23:06:18 UTC

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

2019-07-11 23:06:18 UTC

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

2019-07-11 23:06:19 UTC

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

2019-07-11 23:18:53 UTC

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

2019-07-11 23:18:53 UTC

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

2019-07-11 23:18:53 UTC

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

2019-07-11 23:21:36 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 linux-headers 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-07-11 23:21:37 UTC

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

2019-07-11 23:21:38 UTC

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

2019-07-11 23:21:38 UTC

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

2019-07-11 23:21:39 UTC

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

2019-07-11 23:21:40 UTC

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

2019-07-11 23:21:40 UTC

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

2019-07-11 23:21:41 UTC

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

2019-07-11 23:21:41 UTC

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

2019-07-11 23:21:41 UTC

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

2019-07-11 23:21:42 UTC

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