Namespace
library
Image / Tag
postgres:9.6.12-alpine
Content Digest
sha256:a7fe157e12a492fae58d10fe102c437b9e71ae911592a5ca4022181b921f0262
Details
Created

2019-04-25 11:26:03 UTC

Size

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

PG_SHA256

2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84

PG_VERSION

9.6.12


Layers

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

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

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

[#003] sha256:f5129cddca74989e962b8793b0eaaaf5058329efa83f286d42b8dfc5d28f8dd3 - 81.61% (11.7 MB)

[#004] sha256:64ae093f09cb533c44d129f92b954e0e5ea4930354344887899bbbcec476799f - 0.05% (6.94 KB)

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

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

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

[#008] sha256:fb20fe72e61be86c50c9485985d1986473e0965134b5bd95725cf5228e070d81 - 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:35:06 UTC

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

2019-04-10 14:35:06 UTC

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

2019-04-10 14:35:06 UTC

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

2019-04-10 14:38:01 UTC

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

2019-04-10 14:38:02 UTC

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

2019-04-10 14:38:03 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:38:03 UTC

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

2019-04-25 11:26:01 UTC

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

2019-04-25 11:26:02 UTC

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

2019-04-25 11:26:02 UTC

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

2019-04-25 11:26:03 UTC

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

2019-04-25 11:26:03 UTC

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

2019-04-25 11:26:03 UTC

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

2019-04-25 11:26:03 UTC

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

Details
Created

2019-04-25 00:28:20 UTC

Size

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

PG_SHA256

2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84

PG_VERSION

9.6.12


Layers

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

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

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

[#003] sha256:2042c4eafdd8d1e972759074c6fe7d703efd6aa9bf7f0d4a1472171e8d78eb5c - 80.84% (11.1 MB)

[#004] sha256:925cd0367a3b2554740a05029229c9139d45e2bf04b022fc70d04c06fe1d92bd - 0.05% (6.95 KB)

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

[#006] sha256:22d1e98847ee89a1340f3edb64cad04baf883af9f0fb0c7e97192c37157a5762 - 0.0% (175 Bytes)

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

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

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

2019-04-09 23:48:34 UTC

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

2019-04-09 23:48:34 UTC

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

2019-04-09 23:51:29 UTC

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

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

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

2019-04-25 00:28:18 UTC

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

2019-04-25 00:28:19 UTC

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

2019-04-25 00:28:19 UTC

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

2019-04-25 00:28:20 UTC

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

2019-04-25 00:28:20 UTC

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

2019-04-25 00:28:20 UTC

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

2019-04-25 00:28:20 UTC

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

Details
Created

2019-04-25 08:04:04 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.6

PG_SHA256

2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84

PG_VERSION

9.6.12


Layers

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

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

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

[#003] sha256:afd4244d23791332205f62c640d7b9dcef68edc8ef65f24839942857b783ba9c - 81.46% (10.7 MB)

[#004] sha256:6f2741137991cdb028648e8c49f7df3996eb4177c32d0a2fa54978a670373752 - 0.05% (6.94 KB)

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

[#006] sha256:25ba7207ce9cdbc3d69c82ca0bcfb6bc4a598396d40c8478666e3d5853707a63 - 0.0% (207 Bytes)

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

[#008] sha256:27c8c6d8281f8ab3965c467092b441498c84c96eb4813008f36b3964b316819c - 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:07:52 UTC

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

2019-04-10 09:07:53 UTC

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

2019-04-10 09:07:54 UTC

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

2019-04-10 09:09:33 UTC

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

2019-04-10 09:09:35 UTC

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

2019-04-10 09:09:36 UTC

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

2019-04-10 09:09:37 UTC

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

2019-04-25 08:04:00 UTC

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

2019-04-25 08:04:00 UTC

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

2019-04-25 08:04:01 UTC

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

2019-04-25 08:04:02 UTC

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

2019-04-25 08:04:03 UTC

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

2019-04-25 08:04:03 UTC

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

2019-04-25 08:04:04 UTC

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

Details
Created

2019-04-25 12:05:00 UTC

Size

12.4 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.6

PG_SHA256

2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84

PG_VERSION

9.6.12


Layers

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

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

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

[#003] sha256:aa00c19460f2e98dca9f2c47796303bc018a308364f35b9048ba02c3639cae4d - 81.78% (10.1 MB)

[#004] sha256:2f253d49160ce95accfddcadb3309e7dfbf59adab8cd95338616594fdc22f4b7 - 0.05% (6.95 KB)

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

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

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

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

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

2019-04-10 12:51:09 UTC

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

2019-04-10 12:51:09 UTC

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

2019-04-10 12:52:49 UTC

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

2019-04-10 12:52:51 UTC

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

2019-04-10 12:52:53 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:52:53 UTC

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

2019-04-25 12:04:56 UTC

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

2019-04-25 12:04:56 UTC

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

2019-04-25 12:04:57 UTC

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

2019-04-25 12:04:59 UTC

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

2019-04-25 12:04:59 UTC

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

2019-04-25 12:05:00 UTC

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

2019-04-25 12:05:00 UTC

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

Details
Created

2019-04-25 09:28:41 UTC

Size

13.6 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.6

PG_SHA256

2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84

PG_VERSION

9.6.12


Layers

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

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

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

[#003] sha256:26bda21cdae76e3d35bbed3fe4784184bed0ca4fd4c4b5dce82a8130d1bec3ff - 81.09% (11 MB)

[#004] sha256:d8382e5c410f46a16badd3c81cf7deb3eb265bb40f2264b789b5b77b9bcbc9a9 - 0.05% (6.95 KB)

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

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

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

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

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

2019-04-10 10:42:54 UTC

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

2019-04-10 10:42:54 UTC

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

2019-04-10 10:49:54 UTC

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

2019-04-10 10:49:58 UTC

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

2019-04-10 10:50:01 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:50:03 UTC

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

2019-04-25 09:28:32 UTC

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

2019-04-25 09:28:33 UTC

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

2019-04-25 09:28:34 UTC

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

2019-04-25 09:28:38 UTC

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

2019-04-25 09:28:39 UTC

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

2019-04-25 09:28:40 UTC

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

2019-04-25 09:28:41 UTC

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

Details
Created

2019-04-25 09:30:55 UTC

Size

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

PG_SHA256

2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84

PG_VERSION

9.6.12


Layers

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

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

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

[#003] sha256:c6e0f4bce51a866aa2b978a805fe8023d406aa45fa644d60c469f071a0c3696d - 82.04% (12.2 MB)

[#004] sha256:72e5830bd03f669e19e6883cab689dbac926a0e3d9f13816b2d0f0dff81aa2da - 0.05% (6.94 KB)

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

[#006] sha256:8cdd1ed0e81858200a8ef57dfb87424d808ba83a11f2e77310f37306f9dd00d8 - 0.0% (203 Bytes)

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

[#008] sha256:58912f1da66e2a9572f1061038d4838f956cdfdf796f83436ad0612c1e2f499b - 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:49:22 UTC

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

2019-04-10 10:49:25 UTC

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

2019-04-10 10:49:28 UTC

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

2019-04-10 10:52: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 && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-04-10 10:52:17 UTC

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

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

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

2019-04-25 09:30:25 UTC

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

2019-04-25 09:30:28 UTC

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

2019-04-25 09:30:31 UTC

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

2019-04-25 09:30:42 UTC

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

2019-04-25 09:30:46 UTC

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

2019-04-25 09:30:51 UTC

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

2019-04-25 09:30:55 UTC

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

Details
Created

2019-04-25 12:26:47 UTC

Size

13.4 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.6

PG_SHA256

2e8c8446ba94767bda8a26cf5a2152bf0ae68a86aaebf894132a763084579d84

PG_VERSION

9.6.12


Layers

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

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

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

[#003] sha256:6e0eb80b1570a4feed1acf8986e13ccc7564dd3d9c7f632df88b0b40e43264bf - 81.88% (11 MB)

[#004] sha256:00a8c87cdce22ef38e163d11894988cdd94b7228af729f5fd9def05424a0231f - 0.05% (6.95 KB)

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

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

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

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

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

2019-04-10 14:40:53 UTC

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

2019-04-10 14:40:53 UTC

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

2019-04-10 14:47: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 && cd /usr/src/postgresql && awk '$1 == "#define" && $2 == "DEFAULT_PGSOCKET_DIR" && $3 == "\"/tmp\"" { $3 = "\"/var/run/postgresql\""; print; next } { print }' src/include/pg_config_manual.h > src/include/pg_config_manual.h.new && grep '/var/run/postgresql' src/include/pg_config_manual.h.new && mv src/include/pg_config_manual.h.new src/include/pg_config_manual.h && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config/config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config/config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --enable-integer-datetimes --enable-thread-safety --enable-tap-tests --disable-rpath --with-uuid=e2fs --with-gnu-ld --with-pgport=5432 --with-system-tzdata=/usr/share/zoneinfo --prefix=/usr/local --with-includes=/usr/local/include --with-libraries=/usr/local/lib --with-openssl --with-libxml --with-libxslt && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-04-10 14:47:14 UTC

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

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

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

2019-04-25 12:26:45 UTC

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

2019-04-25 12:26:45 UTC

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

2019-04-25 12:26:45 UTC

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

2019-04-25 12:26:46 UTC

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

2019-04-25 12:26:46 UTC

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

2019-04-25 12:26:47 UTC

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

2019-04-25 12:26:47 UTC

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