Namespace
library
Image / Tag
postgres:9.4.23-alpine
Content Digest
sha256:82174d437cc5c2aa12de1a2fc489cc4969f12269f216ca5dd0a41bac86ad8ffd
Details
Created

2019-07-12 03:39:05 UTC

Size

14 MB

Content Digest
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.4

PG_SHA256

0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b

PG_VERSION

9.4.23


Layers

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

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

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

[#003] sha256:1c8a515bf0c9b5556326075134720e928596ca736e32a10c189779e030510a36 - 80.98% (11.3 MB)

[#004] sha256:65621672859e0359fe75bfc9c0d6c1e953deff241cb3b9ef29c77920b32ba59b - 0.05% (6.53 KB)

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

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

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

[#008] sha256:21b93a95b6f6258230809d1605928106092fc607f575d4b2b88df2363ebf6744 - 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:33:53 UTC

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

2019-07-12 03:33:53 UTC

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

2019-07-12 03:33:53 UTC

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

2019-07-12 03:38: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-07-12 03:39:00 UTC

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

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

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

2019-07-12 03:39:03 UTC

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

2019-07-12 03:39:03 UTC

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

2019-07-12 03:39:03 UTC

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

2019-07-12 03:39:05 UTC

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

2019-07-12 03:39:05 UTC

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

2019-07-12 03:39:05 UTC

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

2019-07-12 03:39:05 UTC

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

Details
Created

2019-07-12 00:55:12 UTC

Size

13.5 MB

Content Digest
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.4

PG_SHA256

0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b

PG_VERSION

9.4.23


Layers

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

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

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

[#003] sha256:adb6fd7142e023a8eaaa46b77d52877b3762b28e1dcf7bde0ad353316a1def44 - 80.16% (10.8 MB)

[#004] sha256:0a53a4a68f3f97571ffb1d64f36614db8ddfd3b368500565b66da0a10b406711 - 0.05% (6.53 KB)

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

[#006] sha256:a67d44dfd7511dd8a4dfa85d3dff48fc29d1979d5576f041151b7e4f72d9fa51 - 0.0% (164 Bytes)

[#007] sha256:0ef1060d285d9a5ef4646d7b5c217cfaa1df1f931760d0572ccf1d78a4216be2 - 0.02% (2.31 KB)

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

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

2019-07-12 00:47:42 UTC

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

2019-07-12 00:47:43 UTC

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

2019-07-12 00:55:03 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:55:05 UTC

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

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

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

2019-07-12 00:55:09 UTC

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

2019-07-12 00:55:09 UTC

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

2019-07-12 00:55:10 UTC

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

2019-07-12 00:55:12 UTC

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

2019-07-12 00:55:12 UTC

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

2019-07-12 00:55:12 UTC

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

2019-07-12 00:55:12 UTC

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

Details
Created

2019-08-06 00:14:22 UTC

Size

12.8 MB

Content Digest
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.4

PG_SHA256

0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b

PG_VERSION

9.4.23


Layers

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

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

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

[#003] sha256:6ae71e4742690997de12302052f2d9754eed815650365768742f642c3997376a - 80.86% (10.4 MB)

[#004] sha256:028ab20a75f463f7842b20d7f895f5c4bde2031cff519d5cdd9fbbb305ebd110 - 0.05% (6.53 KB)

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

[#006] sha256:9358c63f4cf407a90b09c24f996a0fd0ff6515583ae59fc611ac2b3c15ca57a0 - 0.0% (195 Bytes)

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

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

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

2019-08-06 00:12:35 UTC

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

2019-08-06 00:12:36 UTC

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

2019-08-06 00:14:11 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:14:14 UTC

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

2019-08-06 00:14:15 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:14:16 UTC

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

2019-08-06 00:14:18 UTC

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

2019-08-06 00:14:18 UTC

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

2019-08-06 00:14:19 UTC

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

2019-08-06 00:14:20 UTC

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

2019-08-06 00:14:21 UTC

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

2019-08-06 00:14:21 UTC

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

2019-08-06 00:14:22 UTC

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

Details
Created

2019-08-06 00:27:17 UTC

Size

12.1 MB

Content Digest
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.4

PG_SHA256

0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b

PG_VERSION

9.4.23


Layers

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

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

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

[#003] sha256:cd525ce0b0eca14bf033cf8891d8117d8ec58874107185a14d708cee478e9699 - 81.18% (9.81 MB)

[#004] sha256:47baa820d84577eecac8ac8bf455d22176b96d91224619e2e4eefbd63da33f54 - 0.05% (6.53 KB)

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

[#006] sha256:80e7a7bc6b11dfe49d4da1d4fedd2b6f43ff0780c60f165442a03a4551f80be8 - 0.0% (195 Bytes)

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

[#008] sha256:96c8e1f349cca0c57e55c62e6df90457c36cc200a0a1f38f41afab07869cbdfc - 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:25:26 UTC

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

2019-08-06 00:25:27 UTC

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

2019-08-06 00:25:27 UTC

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

2019-08-06 00:27: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 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:27:11 UTC

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

2019-08-06 00:27:12 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:27:13 UTC

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

2019-08-06 00:27:14 UTC

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

2019-08-06 00:27:14 UTC

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

2019-08-06 00:27:15 UTC

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

2019-08-06 00:27:16 UTC

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

2019-08-06 00:27:16 UTC

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

2019-08-06 00:27:17 UTC

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

2019-08-06 00:27:17 UTC

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

Details
Created

2019-07-12 14:56:37 UTC

Size

13.3 MB

Content Digest
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.4

PG_SHA256

0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b

PG_VERSION

9.4.23


Layers

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

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

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

[#003] sha256:0585239049a51639e2073082f12f7048f7b826460e567b7ea365c08db721f981 - 80.47% (10.7 MB)

[#004] sha256:1443379f79c260759df021dbe90a2a3a1dd4a4109023166cb5aac1653c468124 - 0.05% (6.53 KB)

[#005] sha256:a8ad62e6d4126af2719752ee8f3de58b5308fcf3ecd00e039975fbe200c402c5 - 0.0% (160 Bytes)

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

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

[#008] sha256:9284d9c0ba1608fa4ccee7da499ea3328eb8e35be4a148f4aac58a2d6babb5da - 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:54:20 UTC

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

2019-07-12 14:54:20 UTC

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

2019-07-12 14:54:21 UTC

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

2019-07-12 14:56: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 14:56:29 UTC

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

2019-07-12 14:56:31 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:56:31 UTC

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

2019-07-12 14:56:33 UTC

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

2019-07-12 14:56:33 UTC

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

2019-07-12 14:56:34 UTC

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

2019-07-12 14:56:35 UTC

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

2019-07-12 14:56:36 UTC

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

2019-07-12 14:56:36 UTC

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

2019-07-12 14:56:37 UTC

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

Details
Created

2019-07-12 00:37:48 UTC

Size

14.5 MB

Content Digest
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.4

PG_SHA256

0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b

PG_VERSION

9.4.23


Layers

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

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

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

[#003] sha256:73ea9c965e04fee07e88cd98394c3d43afc5e0b84e3b6cf590ffe80c308b610d - 81.43% (11.8 MB)

[#004] sha256:7f0bde2bbbc96e16e79e0de88981003a8e311b5fa4f171ceedc47f691175b187 - 0.04% (6.53 KB)

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

[#006] sha256:66813480b186a3e2adfd0ae1e964a2179ec0391446c8b1ad969119d03676d903 - 0.0% (195 Bytes)

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

[#008] sha256:5fd47d7d505b75adeb49ab49c80499180fd5bcec71f6893c595e5f95b8da71e0 - 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:34:25 UTC

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

2019-07-12 00:34:31 UTC

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

2019-07-12 00:34:35 UTC

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

2019-07-12 00:37: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:37:30 UTC

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

2019-07-12 00:37:34 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:37:35 UTC

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

2019-07-12 00:37:39 UTC

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

2019-07-12 00:37:40 UTC

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

2019-07-12 00:37:41 UTC

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

2019-07-12 00:37:45 UTC

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

2019-07-12 00:37:46 UTC

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

2019-07-12 00:37:47 UTC

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

2019-07-12 00:37:48 UTC

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

Details
Created

2019-07-11 23:24:11 UTC

Size

13.1 MB

Content Digest
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.4

PG_SHA256

0d009c08b0c82b12484950bba10ae8bfd6f0c7bafd8f086ab756c483dd231d9b

PG_VERSION

9.4.23


Layers

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

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

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

[#003] sha256:30c84a63e5dc5af80e81764473074e5dbe195dc509a26a758f24e232d0e248b1 - 81.25% (10.7 MB)

[#004] sha256:bc383c1177f9e96b8c11fe23081b93bac0c80acc0cc079b185c9c86774c961e5 - 0.05% (6.53 KB)

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

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

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

[#008] sha256:626021edd042508f4c658eba08e1c43aeb5cec148034818d9d7eccd0f0e4f7af - 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:21:57 UTC

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

2019-07-11 23:21:57 UTC

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

2019-07-11 23:21:58 UTC

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

2019-07-11 23:24:05 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:24:06 UTC

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

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

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

2019-07-11 23:24:09 UTC

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

2019-07-11 23:24:09 UTC

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

2019-07-11 23:24:09 UTC

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

2019-07-11 23:24:10 UTC

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

2019-07-11 23:24:10 UTC

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

2019-07-11 23:24:10 UTC

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

2019-07-11 23:24:11 UTC

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

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete