Namespace
library
Image / Tag
postgres:9.3.22-alpine
Content Digest
sha256:d306b67d6ecb750e6f2b765c7a7c0c4c7ff8fa2899c46c57413502e8199c1139
Details
Created

2018-05-10 12:19:37 UTC

Size

14.4 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

1b18ed4aa59bab6283a0d8f3a00b9d896f4588bb2ba88ceef2816cb5c4cce91a

PG_VERSION

9.3.22


Layers

[#000] sha256:381c1d4107a4401d75b916e6dc4331efddc01adac41f49eeaa711ab898606a1a - 14.12% (2.03 MB)

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

[#002] sha256:6b9d7a8dc20ca5f1dfb46a9a65873239f3b9adc4b29914f3cc4d5b5a963b153c - 0.0% (148 Bytes)

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

[#004] sha256:22d2148c383f6b506fb54f291f5f5a99a9e2c985031748dd0f66c728aeba5497 - 85.82% (12.3 MB)

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

[#006] sha256:79adcbe526d00a8e9fab7dcb8dcd8d013dba0e892a14c9140e05a723d1a78162 - 0.0% (129 Bytes)

[#007] sha256:e3fc6c6ba9556a5a968cfb7ae9c0a837047d7b544c38c051ea9526a26b56149e - 0.0% (168 Bytes)

[#008] sha256:5dfc6d8472f55e97e4fa2d2ca68a1a9d156eea710b34766bb85f9a2e62bfa66d - 0.01% (1.76 KB)

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


History
2017-12-01 18:46:48 UTC

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

2017-12-01 18:46:48 UTC

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

2017-12-01 18:46:48 UTC

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

2018-04-27 13:16:02 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-04-27 13:16:03 UTC

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

2018-04-27 13:16:03 UTC

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

2018-04-27 13:30:13 UTC

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

2018-04-27 13:30:13 UTC

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

2018-04-27 13:30:13 UTC

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

2018-04-27 13:30:13 UTC

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

2018-04-27 13:30:13 UTC

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

2018-04-27 13:32:24 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-04-27 13:32:24 UTC

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

2018-04-27 13:32:25 UTC

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

2018-04-27 13:32:25 UTC

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

2018-04-27 13:32:26 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-04-27 13:32:26 UTC

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

2018-05-10 12:19:36 UTC

/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/

2018-05-10 12:19:37 UTC

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

2018-05-10 12:19:37 UTC

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

2018-05-10 12:19:37 UTC

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

2018-05-10 12:19:37 UTC

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

Details
Created

2018-05-09 18:01:53 UTC

Size

14 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

1b18ed4aa59bab6283a0d8f3a00b9d896f4588bb2ba88ceef2816cb5c4cce91a

PG_VERSION

9.3.22


Layers

[#000] sha256:ff3a5c916c92643ff77519ffa742d3ec61b7f591b6b7504599d95a4a41134e28 - 14.12% (1.97 MB)

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

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

[#003] sha256:3691394fdada0bfcfdfe7a29805efa1f9ad096480a26f6c614160e8ad802277f - 85.82% (12 MB)

[#004] sha256:3381c85bf0b539dca07ccd7bbce94a3d0ef0407d706f68c500728bf84dbaaecf - 0.04% (6.32 KB)

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

[#006] sha256:816ed0e3721c0b4e50631ceba4ead05997847c13dc3aaf488d40eef3d3b41c11 - 0.0% (170 Bytes)

[#007] sha256:c2c76ea8e50b902a80f1d1944d55caaa6bbdfd29ee7b3b7da8c3ddcceea45efc - 0.01% (1.76 KB)

[#008] sha256:2509ed90b1e915104aa6369cfbfb0521e0645c0c527d10923c1da15d267f27bb - 0.0% (121 Bytes)


History
2018-01-09 21:10:58 UTC

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

2018-01-09 21:10:58 UTC

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

2018-02-18 02:31:30 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-02-18 02:31:31 UTC

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

2018-02-18 02:31:32 UTC

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

2018-04-27 06:32:44 UTC

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

2018-04-27 06:32:44 UTC

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

2018-04-27 06:32:44 UTC

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

2018-04-27 06:32:45 UTC

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

2018-04-27 06:32:45 UTC

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

2018-04-27 06:34:39 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-04-27 06:34:40 UTC

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

2018-04-27 06:34:41 UTC

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

2018-04-27 06:34:41 UTC

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

2018-04-27 06:34:42 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-04-27 06:34:42 UTC

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

2018-05-09 18:01:52 UTC

/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/

2018-05-09 18:01:53 UTC

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

2018-05-09 18:01:53 UTC

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

2018-05-09 18:01:53 UTC

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

2018-05-09 18:01:53 UTC

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

Details
Created

2018-05-10 07:50:38 UTC

Size

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

1b18ed4aa59bab6283a0d8f3a00b9d896f4588bb2ba88ceef2816cb5c4cce91a

PG_VERSION

9.3.22


Layers

[#000] sha256:95d54dd4bdadebb53f9b91b25aa7dc5fcb83c534eb1d196eb0814aa1e16f3db2 - 14.58% (1.94 MB)

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

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

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

[#004] sha256:01cfa4040f00a11b273eddeeb4f08ba4073c4308e427454ccc5b80c63075da28 - 85.35% (11.4 MB)

[#005] sha256:d6b31d667a87ba17273456e2a61efb0d292f6de83a482a9b46e4cea44f8aa69f - 0.05% (6.33 KB)

[#006] sha256:88bf10dbdb45bf2b58393ee431237992e602387e6f3a1c5402547809a658288f - 0.0% (161 Bytes)

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

[#008] sha256:7ebcd082bbd7ec02e4503cb9f343ca595b6a7c920c33909389cce296896ad532 - 0.01% (1.76 KB)

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


History
2017-12-01 18:41:45 UTC

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

2017-12-01 18:41:45 UTC

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

2017-12-01 18:41:46 UTC

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

2018-04-27 07:49: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-04-27 07:49:29 UTC

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

2018-04-27 07:49:32 UTC

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

2018-04-27 10:13:22 UTC

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

2018-04-27 10:13:23 UTC

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

2018-04-27 10:13:23 UTC

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

2018-04-27 10:13:24 UTC

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

2018-04-27 10:13:25 UTC

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

2018-04-27 10:46: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 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-04-27 10:46:16 UTC

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

2018-04-27 10:46:20 UTC

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

2018-04-27 10:46:21 UTC

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

2018-04-27 10:46:26 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-04-27 10:46:27 UTC

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

2018-05-10 07:50:31 UTC

/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/

2018-05-10 07:50:36 UTC

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

2018-05-10 07:50:37 UTC

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

2018-05-10 07:50:37 UTC

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

2018-05-10 07:50:38 UTC

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

Details
Created

2018-05-10 09:54:21 UTC

Size

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

1b18ed4aa59bab6283a0d8f3a00b9d896f4588bb2ba88ceef2816cb5c4cce91a

PG_VERSION

9.3.22


Layers

[#000] sha256:b78042c299ad99d1e646b18762d4bc22a84c4f88e5bb491ea6293a10f53ddf79 - 14.68% (1.9 MB)

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

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

[#003] sha256:ee1f330d87363983accf413df8ec516758c5479fc2e75cef865c71f55033b9a8 - 0.0% (112 Bytes)

[#004] sha256:ce66e6ef4e4b13bc0d362ba9c5e76ba3f8e969ef6eb7ff1b7fef96ca23466621 - 85.26% (11 MB)

[#005] sha256:1f69676040f816570c4244bafde016e06a792f39e739a612efe8167d5180fd43 - 0.05% (6.33 KB)

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

[#007] sha256:f32ae8b16ee707242a94c584dacf04cc1cc6f33d788001998a07436c7504ba40 - 0.0% (169 Bytes)

[#008] sha256:7e101a0bd26a6ca6d557f4f1ce8510eb2f1c651cd5e6452f8abb8a70d67d924c - 0.01% (1.75 KB)

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


History
2017-12-01 18:42:42 UTC

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

2017-12-01 18:42:42 UTC

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

2017-12-01 18:42:43 UTC

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

2018-02-18 15:21: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-02-18 15:21:16 UTC

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

2018-02-18 15:21:17 UTC

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

2018-05-01 03:09:17 UTC

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

2018-05-01 03:09:19 UTC

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

2018-05-01 03:09:20 UTC

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

2018-05-01 03:09:21 UTC

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

2018-05-01 03:09:23 UTC

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

2018-05-01 03:13: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 && 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-05-01 03:13:05 UTC

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

2018-05-01 03:13:10 UTC

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

2018-05-01 03:13:10 UTC

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

2018-05-01 03:13:12 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-05-01 03:13:13 UTC

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

2018-05-10 09:54:15 UTC

/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/

2018-05-10 09:54:18 UTC

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

2018-05-10 09:54:19 UTC

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

2018-05-10 09:54:20 UTC

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

2018-05-10 09:54:21 UTC

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

Details
Created

2018-05-12 10:25:56 UTC

Size

13.7 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

1b18ed4aa59bab6283a0d8f3a00b9d896f4588bb2ba88ceef2816cb5c4cce91a

PG_VERSION

9.3.22


Layers

[#000] sha256:0da653ea85b50d280ec56ca2eafb7e8b37590630356e043fa9ff162d55732a23 - 14.51% (1.99 MB)

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

[#002] sha256:6a489c2288bce888c6fac93b540da6d11957e1b4920137f6f06f21ac757708c5 - 0.0% (178 Bytes)

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

[#004] sha256:caa96040eccc7afcad1455b983e65d2630c9087bf31efd15286bc9410bc98014 - 85.42% (11.7 MB)

[#005] sha256:b1743a4a813c67a278128d3d7d177ced194e85fbeb3c03925eb21e99934d93fc - 0.05% (6.32 KB)

[#006] sha256:4e7f7cd09d5e873e89866997ddc55bfab64c8e0da43a4a68619394a79492959b - 0.0% (161 Bytes)

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

[#008] sha256:dd108f5c7465f7c9c22c29ff7f0eca0d94fcd477789928beb6aada564c4a7316 - 0.01% (1.76 KB)

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


History
2017-12-01 18:41:54 UTC

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

2017-12-01 18:41:55 UTC

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

2017-12-01 18:41:57 UTC

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

2018-02-17 23:01: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-02-17 23:01:43 UTC

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

2018-02-17 23:01:47 UTC

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

2018-04-27 09:48:12 UTC

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

2018-04-27 09:48:15 UTC

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

2018-04-27 09:48:25 UTC

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

2018-04-27 09:48:28 UTC

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

2018-04-27 09:48:31 UTC

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

2018-04-27 09:51: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 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-04-27 09:51:06 UTC

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

2018-04-27 09:51:08 UTC

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

2018-04-27 09:51:09 UTC

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

2018-04-27 09:51:11 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-04-27 09:51:12 UTC

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

2018-05-12 10:25:51 UTC

/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/

2018-05-12 10:25:53 UTC

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

2018-05-12 10:25:54 UTC

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

2018-05-12 10:25:55 UTC

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

2018-05-12 10:25:56 UTC

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

Details
Created

2018-05-10 13:35:22 UTC

Size

14 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

1b18ed4aa59bab6283a0d8f3a00b9d896f4588bb2ba88ceef2816cb5c4cce91a

PG_VERSION

9.3.22


Layers

[#000] sha256:11e7bc85614a236b32043d147930fd2bc9055af8642fe30e5e56142590572b0e - 14.92% (2.08 MB)

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

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

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

[#004] sha256:bdc06adb298ebe9b405416d40d05ffbdf10236f77b4821631dbfa6bfe1c6b19a - 85.02% (11.9 MB)

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

[#006] sha256:5d8ebfed9459ebcb522ff6bd6f8c02fe402a75e3dcf6ad8e19c56096b56208d8 - 0.0% (128 Bytes)

[#007] sha256:289fd16eb275ba7f4307fd7c71587aae46c3dc0e27178dde799da7219557a8fd - 0.0% (168 Bytes)

[#008] sha256:03829fee83e6b8b282ebe647af9ce66699278682a3c150cba487021747195951 - 0.01% (1.76 KB)

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


History
2017-12-01 18:41:57 UTC

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

2017-12-01 18:41:58 UTC

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

2017-12-01 18:41:58 UTC

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

2018-02-18 10:25:35 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-02-18 10:25:35 UTC

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

2018-02-18 10:25:36 UTC

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

2018-04-27 13:32:00 UTC

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

2018-04-27 13:32:00 UTC

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

2018-04-27 13:32:00 UTC

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

2018-04-27 13:32:02 UTC

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

2018-04-27 13:32:05 UTC

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

2018-04-27 13:35: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-04-27 13:35:30 UTC

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

2018-04-27 13:35:31 UTC

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

2018-04-27 13:35:31 UTC

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

2018-04-27 13:35: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-04-27 13:35:32 UTC

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

2018-05-10 13:35:19 UTC

/bin/sh -c #(nop) COPY file:8bcae898f0d79e82fbb8bef4f9c4b97c824503b3b883fcd819af98327a81e306 in /usr/local/bin/

2018-05-10 13:35:21 UTC

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

2018-05-10 13:35:21 UTC

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

2018-05-10 13:35:22 UTC

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

2018-05-10 13:35:22 UTC

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