Namespace
library
Image / Tag
postgres:9.3.23-alpine
Content Digest
sha256:15c233629dc3ee4af8bde4c3906f82ea2860d8d10805d489d636e695775de3bd
Details
Created

2018-07-11 11:08:35 UTC

Size

15.3 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb

PG_VERSION

9.3.23


Layers

[#000] sha256:ef15772113129a5330876ce10683bbf6509a4c4c99b3a99894dcbc7560975052 - 14.13% (2.17 MB)

[#001] sha256:6df692b84cf35e6038d677f9ab7de2a3c671c57671043da1d20d99252e0d9c42 - 0.0% (175 Bytes)

[#002] sha256:68f1f64a5de43fc9cf3d68cbe05f2a18e17a39e44d1512ce0b3911f2bc59f77e - 0.0% (148 Bytes)

[#003] sha256:72347c8a13f638fd36f586cfa21f37b4da1dd04bab6b6204d3ce2dc8f04d98e8 - 0.0% (115 Bytes)

[#004] sha256:d12e874b0c4600683a772e24cdc72fd339545cf8b0f28dc968e2d68eef237e5d - 85.81% (13.2 MB)

[#005] sha256:8fa00630da7ef5dd7cc7ccd2f0b972244de6d478bf8eaaef3a10d01dfc4bfc60 - 0.04% (6.32 KB)

[#006] sha256:374090b5408c04662b079e800ef1f5daa8d00bff5b986a455b8a5f9f3919c874 - 0.0% (130 Bytes)

[#007] sha256:8e6a645dcb1ea296640e43552c8961eeff452c32cb8f17095795bb40aa7cdeeb - 0.0% (172 Bytes)

[#008] sha256:d41d68671d1193e3a684cfbac2c5f2df84e1aa1054d931e9ef1b82ac70ce0a23 - 0.01% (2.18 KB)

[#009] sha256:6f915ed8a903cf8559a631cf553e715545c74a04f93be0bd1fffd0e35dbb5d6d - 0.0% (121 Bytes)


History
2018-07-06 15:02:06 UTC

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

2018-07-06 15:02:07 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2018-07-06 15:02:07 UTC

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

2018-07-11 10:50:41 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"

2018-07-11 10:50:42 UTC

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

2018-07-11 10:50:42 UTC

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

2018-07-11 11:06:16 UTC

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

2018-07-11 11:06:17 UTC

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

2018-07-11 11:06:17 UTC

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

2018-07-11 11:06:17 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-07-11 11:06:18 UTC

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

2018-07-11 11:08:30 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 && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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

2018-07-11 11:08:30 UTC

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

2018-07-11 11:08:31 UTC

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

2018-07-11 11:08:32 UTC

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

2018-07-11 11:08:32 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2018-07-11 11:08:33 UTC

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

2018-07-11 11:08:33 UTC

/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/

2018-07-11 11:08:34 UTC

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

2018-07-11 11:08:34 UTC

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

2018-07-11 11:08:35 UTC

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

2018-07-11 11:08:35 UTC

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

Details
Created

2018-07-11 01:04:26 UTC

Size

14.9 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb

PG_VERSION

9.3.23


Layers

[#000] sha256:8e3ba11ec2a2b39ab372c60c16b421536e50e5ce64a0bc81765c2e38381bcff6 - 14.08% (2.1 MB)

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

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

[#003] sha256:42b65bbef9807a85abf608441e98ddeadd1c6e0cdbc916d8e9e33bee96f5f735 - 85.86% (12.8 MB)

[#004] sha256:1d646942dd5062b0ddce938372e1b3c68f88ebf6dc312987b1b7a1e0fa68e30c - 0.04% (6.32 KB)

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

[#006] sha256:6a79f0c118e8d64a30c094ddec1ef104347d3a5dadfa9395a882383f35179cff - 0.0% (170 Bytes)

[#007] sha256:b6e22e6e9eb294e0e8de3dc580df1c045679e7f76286922ef019782ca7ed0d52 - 0.01% (2.18 KB)

[#008] sha256:69998c05376b7964985c842f3daf4cc753af964a23ab6758f158f8be9d46deeb - 0.0% (121 Bytes)


History
2018-07-06 14:14:06 UTC

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

2018-07-06 14:14:06 UTC

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

2018-07-11 00:47:50 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"

2018-07-11 00:47:50 UTC

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

2018-07-11 00:47:51 UTC

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

2018-07-11 01:01:57 UTC

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

2018-07-11 01:01:57 UTC

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

2018-07-11 01:01:57 UTC

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

2018-07-11 01:01:57 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-07-11 01:01:58 UTC

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

2018-07-11 01:04: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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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

2018-07-11 01:04:11 UTC

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

2018-07-11 01:04:12 UTC

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

2018-07-11 01:04:12 UTC

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

2018-07-11 01:04:13 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2018-07-11 01:04:13 UTC

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

2018-07-11 01:04:13 UTC

/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/

2018-07-11 01:04:26 UTC

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

2018-07-11 01:04:26 UTC

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

2018-07-11 01:04:26 UTC

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

2018-07-11 01:04:26 UTC

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

Details
Created

2018-07-14 11:39:54 UTC

Size

14.2 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb

PG_VERSION

9.3.23


Layers

[#000] sha256:ee7d700abbf209aa401ef5d53f86af298a25e8154b3259036e9307d08f255c5d - 14.44% (2.05 MB)

[#001] sha256:a1653f4692c1ccea69cd46121d4f1371957f66e97a20141371dd4da10ebaec19 - 0.0% (175 Bytes)

[#002] sha256:be89c0bdfe21471b24dd28c380bc35cebe521da2e9615c5be939deafd734624c - 0.0% (180 Bytes)

[#003] sha256:852d2cfc5d822ef2846113436b3d9d9264722ad578117a2e770ea982600c9511 - 0.0% (149 Bytes)

[#004] sha256:99079e9192aaf4d1284ff806ac81ad887138043a02256725a674f61ee0b0a40c - 85.49% (12.1 MB)

[#005] sha256:23b69f41e5cc0a4c38aff45d6c3c18e80d7be6bd2a5358846f167731309e865f - 0.04% (6.33 KB)

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

[#007] sha256:00d59011092489edf1ddf4417cad4bd666b6ac0a48e2a41b1c4027449c74643b - 0.0% (202 Bytes)

[#008] sha256:fd05087479477ec8a12e3f3bb1dc3cee9bef7534d18723abb64b06b998880949 - 0.02% (2.18 KB)

[#009] sha256:c23b658fae4b7c8e99884b1eca2fe63dea179999bdad816443e41d2c077d1c69 - 0.0% (121 Bytes)


History
2018-07-06 07:53:29 UTC

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

2018-07-06 07:53:30 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2018-07-06 07:53:30 UTC

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

2018-07-14 07:49:44 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"

2018-07-14 07:49:45 UTC

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

2018-07-14 07:49:49 UTC

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

2018-07-14 11:07:28 UTC

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

2018-07-14 11:07:29 UTC

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

2018-07-14 11:07:29 UTC

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

2018-07-14 11:07:30 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-07-14 11:07:31 UTC

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

2018-07-14 11:39: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 && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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

2018-07-14 11:39:35 UTC

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

2018-07-14 11:39:39 UTC

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

2018-07-14 11:39:40 UTC

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

2018-07-14 11:39:44 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2018-07-14 11:39:45 UTC

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

2018-07-14 11:39:47 UTC

/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/

2018-07-14 11:39:51 UTC

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

2018-07-14 11:39:52 UTC

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

2018-07-14 11:39:53 UTC

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

2018-07-14 11:39:54 UTC

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

Details
Created

2018-07-11 09:26:00 UTC

Size

13.8 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb

PG_VERSION

9.3.23


Layers

[#000] sha256:47e04371c99027fae42871b720fdc6cdddcb65062bfa05f0c3bb0a594cb5bbbd - 14.55% (2 MB)

[#001] sha256:b4103359e1ecd9a7253d8b8a041d4e81db1ff4a5e1950bc0e02305d221c9e6c2 - 0.0% (176 Bytes)

[#002] sha256:437d5ea65f8f13faa3042893bc9dd0a4e5b68562c0eb1f9aeaf258936fe72140 - 0.0% (148 Bytes)

[#003] sha256:cf835df21096513cbddcf69a9b532c79832f2cd1c8b47e78e9776fc76eb24340 - 0.0% (115 Bytes)

[#004] sha256:c0f86c86d5cf4406ea368fcea9df5b24e6e99cdfac00e0ade451e991453e4527 - 85.39% (11.8 MB)

[#005] sha256:d628d13daaae90f5bc93a39df1e64ca3b74bd00ee0b7cc3ca3e38c0fddb20cbc - 0.04% (6.32 KB)

[#006] sha256:4bab465b96b5dd99a42dda5885ada39b1b075cea14cd0bc7e7e1042bc9d13aaa - 0.0% (129 Bytes)

[#007] sha256:002ed322ad44ee8403fa4fc33b208829cb5604840dcbdb109e12b4b64f76e602 - 0.0% (170 Bytes)

[#008] sha256:d25d837fcd51076eda70abb29f88a19eeaa3e7d7ea916041659c758e175c9dba - 0.02% (2.18 KB)

[#009] sha256:b2e6da6cb249e196fdb6e0493da9c636ac03d3e4918496e9835b3e5e6925f709 - 0.0% (121 Bytes)


History
2018-07-06 08:41:03 UTC

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

2018-07-06 08:41:03 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2018-07-06 08:41:04 UTC

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

2018-07-11 08:58:15 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"

2018-07-11 08:58:15 UTC

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

2018-07-11 08:58:17 UTC

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

2018-07-11 09:21:55 UTC

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

2018-07-11 09:21:55 UTC

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

2018-07-11 09:21:56 UTC

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

2018-07-11 09:21:57 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-07-11 09:21:58 UTC

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

2018-07-11 09:25: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 make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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

2018-07-11 09:25:40 UTC

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

2018-07-11 09:25:42 UTC

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

2018-07-11 09:25:42 UTC

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

2018-07-11 09:25:44 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2018-07-11 09:25:45 UTC

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

2018-07-11 09:25:46 UTC

/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/

2018-07-11 09:25:58 UTC

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

2018-07-11 09:25:59 UTC

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

2018-07-11 09:25:59 UTC

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

2018-07-11 09:26:00 UTC

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

Details
Created

2018-07-11 10:24:24 UTC

Size

14.5 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb

PG_VERSION

9.3.23


Layers

[#000] sha256:e642bcb5b1890a07dd2fc8be2bc35edf5e2b651d4993e71caef03b4b43ace970 - 14.41% (2.09 MB)

[#001] sha256:2e09410b1fce4c4630b3bc57c6ee158ee9821ec415d0acaa1607b9e0bcf76d91 - 0.0% (176 Bytes)

[#002] sha256:99cf65db7a2a46b10230d6919606d6370a8f89f4126cb2e72c0e8e2b817cc9bd - 0.0% (180 Bytes)

[#003] sha256:831e22a24061ee9561c3ce50ae211d56c4d735d93bc6f6ba82661c69ebaaea94 - 0.0% (149 Bytes)

[#004] sha256:70990e0fd609fbfbcbf29af158a82a551ddcf4082742b1efeeb5972344589fbc - 85.53% (12.4 MB)

[#005] sha256:f863ac040f104f00d171980975ad15aaf1531829ce596b2595c85f1cec76e2e3 - 0.04% (6.33 KB)

[#006] sha256:b3e226a65e6779fed50d28b549543acfbe691226d24f92f84dca9fbb47c8d1f5 - 0.0% (162 Bytes)

[#007] sha256:d50a737a68325701ed623612b4822f9a2d565aad10cd1032c540214249fbec80 - 0.0% (200 Bytes)

[#008] sha256:1c5c0a1b3a6a4c00231de46386ac6cc7b60c65d775904fda8db1edc00836f9c3 - 0.01% (2.18 KB)

[#009] sha256:9305cdfb2bcafc4cf8f1eea7e3595625e9bb73f267fce0fedac2972be9c86f5a - 0.0% (121 Bytes)


History
2018-07-06 08:18:09 UTC

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

2018-07-06 08:18:10 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2018-07-06 08:18:11 UTC

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

2018-07-11 10:01:28 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"

2018-07-11 10:01:29 UTC

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

2018-07-11 10:01:32 UTC

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

2018-07-11 10:21:27 UTC

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

2018-07-11 10:21:28 UTC

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

2018-07-11 10:21:30 UTC

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

2018-07-11 10:21:31 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-07-11 10:21:31 UTC

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

2018-07-11 10:23:42 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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

2018-07-11 10:23:45 UTC

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

2018-07-11 10:23:52 UTC

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

2018-07-11 10:23:53 UTC

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

2018-07-11 10:24:02 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2018-07-11 10:24:03 UTC

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

2018-07-11 10:24:11 UTC

/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/

2018-07-11 10:24:14 UTC

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

2018-07-11 10:24:21 UTC

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

2018-07-11 10:24:23 UTC

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

2018-07-11 10:24:24 UTC

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

Details
Created

2018-07-11 12:06:58 UTC

Size

14.8 MB

Content Digest
Environment
LANG

en_US.utf8

OSSP_UUID_SHA256

11a615225baa5f8bb686824423f50e4427acd3f70d394765bdff32801f0fd5b0

OSSP_UUID_VERSION

1.6.2

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.3

PG_SHA256

1d981006dce3851e470b038e88bf496a80813c614c2e89ed7d2c7fb38e66f6cb

PG_VERSION

9.3.23


Layers

[#000] sha256:cdf21ace94188d512903eea53ea8559677e0e6ffd5d6a180a1d88c118abc96fc - 14.88% (2.2 MB)

[#001] sha256:ea178433f2f09080fbbf77f09da1b16d588b7ced380d495a2f2ad00d28468338 - 0.0% (175 Bytes)

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

[#003] sha256:9218ec3eacdd51c0198b5043ce0115b269b534e8da4fd8aa0f07d1b7e3f1f1ab - 0.0% (115 Bytes)

[#004] sha256:dbb2b616af59960f962c3349039f2efe7d39ff46207ecfb77912d55ece31991b - 85.06% (12.6 MB)

[#005] sha256:deb23588d8d9a58e36ffdea664efd44cf4c1bf0e3012a7a973bd106517d9fdb4 - 0.04% (6.33 KB)

[#006] sha256:12192e3060f8aeabd7af4fa0109e726c2dc24482f6f87138a2ff9a128d0e4fd9 - 0.0% (128 Bytes)

[#007] sha256:307453e3beec1c3ee7dc53d3bcb260a5fc3339ffcfab6996917af7f0bc238331 - 0.0% (171 Bytes)

[#008] sha256:9a8170794a0163ef5aec0803367a7c370830dac3745594395323db4871a4cc97 - 0.01% (2.18 KB)

[#009] sha256:1a754a11b1e4010ca25242e4dc8cb7b9950b1b505010ce99ae8412a57f956de3 - 0.0% (121 Bytes)


History
2018-07-06 11:41:42 UTC

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

2018-07-06 11:41:43 UTC

/bin/sh -c #(nop) COPY file:0f1d36dd7d8d53613b275660a88c5bf9b608ea8aa73a8054cb8bdbd73fd971ac in /etc/localtime

2018-07-06 11:41:43 UTC

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

2018-07-11 11:52:46 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"

2018-07-11 11:52:46 UTC

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

2018-07-11 11:52:47 UTC

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

2018-07-11 12:05:11 UTC

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

2018-07-11 12:05:11 UTC

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

2018-07-11 12:05:11 UTC

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

2018-07-11 12:05:11 UTC

/bin/sh -c #(nop) ENV OSSP_UUID_VERSION=1.6.2

2018-07-11 12:05:11 UTC

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

2018-07-11 12:06:55 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 && wget -O uuid.tar.gz "https://www.mirrorservice.org/sites/ftp.ossp.org/pkg/lib/uuid/uuid-$OSSP_UUID_VERSION.tar.gz" && echo "$OSSP_UUID_SHA256 *uuid.tar.gz" | sha256sum -c - && mkdir -p /usr/src/ossp-uuid && tar --extract --file uuid.tar.gz --directory /usr/src/ossp-uuid --strip-components 1 && rm uuid.tar.gz && ( cd /usr/src/ossp-uuid && gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)" && wget -O config.guess 'https://git.savannah.gnu.org/cgit/config.git/plain/config.guess?id=7d3d27baf8107b630586c962c057e22149653deb' && wget -O config.sub 'https://git.savannah.gnu.org/cgit/config.git/plain/config.sub?id=7d3d27baf8107b630586c962c057e22149653deb' && ./configure --build="$gnuArch" --prefix=/usr/local && make -j "$(nproc)" && make install ) && rm -rf /usr/src/ossp-uuid && 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 --disable-rpath --with-ossp-uuid --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

2018-07-11 12:06:55 UTC

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

2018-07-11 12:06:56 UTC

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

2018-07-11 12:06:56 UTC

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

2018-07-11 12:06:56 UTC

/bin/sh -c mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" # this 777 will be replaced by 700 at runtime (allows semi-arbitrary "--user" values)

2018-07-11 12:06:57 UTC

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

2018-07-11 12:06:57 UTC

/bin/sh -c #(nop) COPY file:9dd1c949a5c5f0ce96f548c5eaa0567ac18383563705231d6fd8e616fe5b3397 in /usr/local/bin/

2018-07-11 12:06:58 UTC

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

2018-07-11 12:06:58 UTC

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

2018-07-11 12:06:58 UTC

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

2018-07-11 12:06:58 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