Namespace
library
Image / Tag
postgres:9.6.16-alpine
Content Digest
sha256:8ec15b51fd1ec3233ca7bcf3a58e800d863f57c8d07ffdc65fe4640a19f7b2e3
Details
Created

2020-01-30 02:59:46 UTC

Size

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

5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7

PG_VERSION

9.6.16


Layers

[#000] sha256:f024b1263dc58db07a458b73ae1a2dca02ca55bef1ccd1fa3fd50656551fadf2 - 18.37% (2.68 MB)

[#001] sha256:3b2cb8463eb063fd24e3d29bd4ca5b9ba1590717acda7415cb45da3e7560f0dd - 0.01% (1.22 KB)

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

[#003] sha256:fe49f93678df794c61a1d72144fb23535044c306682a96aa160c18349e111b0a - 81.54% (11.9 MB)

[#004] sha256:20b2cc2c8a06f7a47991da929b764b8d671a4080d9b01564fa8f7cd5007fdd7e - 0.05% (6.99 KB)

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

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

[#007] sha256:d2a106bf288ba4d1ce2a3dd80535b186dc29df23524b0dbdc496b9026bf552c0 - 0.03% (3.75 KB)

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


History
2020-01-18 01:38:44 UTC

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

2020-01-18 01:38:45 UTC

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

2020-01-30 02:38:44 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:38:44 UTC

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

2020-01-30 02:38:45 UTC

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

2020-01-30 02:56:13 UTC

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

2020-01-30 02:56:13 UTC

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

2020-01-30 02:56:13 UTC

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

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

2020-01-30 02:59:43 UTC

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

2020-01-30 02:59:44 UTC

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

2020-01-30 02:59:44 UTC

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

2020-01-30 02:59:45 UTC

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

2020-01-30 02:59:45 UTC

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

2020-01-30 02:59:45 UTC

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

2020-01-30 02:59:46 UTC

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

2020-01-30 02:59:46 UTC

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

2020-01-30 02:59:46 UTC

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

2020-01-30 02:59:46 UTC

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

Details
Created

2020-01-30 03:36:55 UTC

Size

14 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.6

PG_SHA256

5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7

PG_VERSION

9.6.16


Layers

[#000] sha256:c9b1b535fdd91a9855fb7f82348177e5f019329a58c53c47272962dd60f71fc9 - 19.13% (2.67 MB)

[#001] sha256:d1030c456d04636112fa347ddc5296036cddf70c8085be2e3f3fb481898f18fe - 0.01% (1.22 KB)

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

[#003] sha256:e1057c9a28776b9ab60a6a0a79afb37a5d68f1ec650c9c1a1e95a5e161d023c6 - 80.78% (11.3 MB)

[#004] sha256:3bc0c32069403f3e0a4f55c207150573a3bb394b724b76dafdd8047fc23b5df3 - 0.05% (6.99 KB)

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

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

[#007] sha256:6ade8b42d5008d85cee916e695a1da705b04a744722172eaabe685ec30c71382 - 0.03% (3.75 KB)

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


History
2020-01-18 01:19:37 UTC

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

2020-01-18 01:19:37 UTC

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

2020-01-30 03:19:59 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 03:19:59 UTC

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

2020-01-30 03:20:00 UTC

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

2020-01-30 03:34:11 UTC

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

2020-01-30 03:34:11 UTC

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

2020-01-30 03:34:11 UTC

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

2020-01-30 03:36:51 UTC

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

2020-01-30 03:36:51 UTC

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

2020-01-30 03:36:52 UTC

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

2020-01-30 03:36:52 UTC

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

2020-01-30 03:36:53 UTC

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

2020-01-30 03:36:53 UTC

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

2020-01-30 03:36:54 UTC

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

2020-01-30 03:36:54 UTC

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

2020-01-30 03:36:55 UTC

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

2020-01-30 03:36:55 UTC

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

2020-01-30 03:36:55 UTC

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

Details
Created

2020-01-30 03:05:31 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

5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7

PG_VERSION

9.6.16


Layers

[#000] sha256:832e07764099264ef96e50a1e5e41c52d6b0809bd054e29508a6878aa59d156d - 18.64% (2.5 MB)

[#001] sha256:3ab27e2422be886bc0a338b0e0c20b8e2beea15b880defbac81f75c04495d0c2 - 0.01% (1.24 KB)

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

[#003] sha256:c6dda155ab6da3f7ce5a0a095b31f550ad1eec7400f992ce356739d2cc13322a - 81.27% (10.9 MB)

[#004] sha256:96fdb21a7a829d858ac12aa032091ca59612507b5c90725646c5d65e2cc94e7b - 0.05% (6.99 KB)

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

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

[#007] sha256:a449e0683710f8a1fc54b307dc9d12f86cc429d2e5dc3e172aa97d091612d6fe - 0.03% (3.75 KB)

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


History
2020-01-18 01:53:16 UTC

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

2020-01-18 01:53:17 UTC

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

2020-01-30 02:49:35 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:49:36 UTC

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

2020-01-30 02:49:37 UTC

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

2020-01-30 03:02:30 UTC

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

2020-01-30 03:02:31 UTC

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

2020-01-30 03:02:33 UTC

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

2020-01-30 03:05:14 UTC

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

2020-01-30 03:05:17 UTC

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

2020-01-30 03:05:19 UTC

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

2020-01-30 03:05:20 UTC

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

2020-01-30 03:05:22 UTC

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

2020-01-30 03:05:22 UTC

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

2020-01-30 03:05:23 UTC

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

2020-01-30 03:05:26 UTC

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

2020-01-30 03:05:30 UTC

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

2020-01-30 03:05:30 UTC

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

2020-01-30 03:05:31 UTC

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

Details
Created

2020-01-30 03:12:46 UTC

Size

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

5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7

PG_VERSION

9.6.16


Layers

[#000] sha256:3a2c5e3c37b2e3d749405512ef3793aa45a2f5c11615d9e9efa80179262cdf27 - 18.32% (2.31 MB)

[#001] sha256:572777a7d0992ea05b14f2ba3230ce906c753dd21eb73ac2b6018551250312db - 0.01% (1.24 KB)

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

[#003] sha256:3e4a4696e10febf1192fc41774e4996a9c99fab6cc6dd148f2c7e2baccb3d4c8 - 81.59% (10.3 MB)

[#004] sha256:1a5dc0ebb7e5bcfad548b278494935b59ef68bb175ee5269bd651ac11b6165b9 - 0.05% (6.99 KB)

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

[#006] sha256:44def7b6fb7128bd73a57749b60c6494934f44a032a5853f4b33c8a7287272e3 - 0.0% (196 Bytes)

[#007] sha256:f11acc24b73cf50d5a7dfb16a359dcb3952f255a2c993b5cacfd45b093986e2d - 0.03% (3.75 KB)

[#008] sha256:1b3a650ba71db65a089810172ab8b952fbffc483232cc4504228baa2e9c08712 - 0.0% (121 Bytes)


History
2020-01-18 02:03:19 UTC

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

2020-01-18 02:03:22 UTC

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

2020-01-30 03:00:10 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 03:00:13 UTC

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

2020-01-30 03:00:15 UTC

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

2020-01-30 03:10:24 UTC

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

2020-01-30 03:10:25 UTC

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

2020-01-30 03:10:25 UTC

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

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

2020-01-30 03:12:33 UTC

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

2020-01-30 03:12:35 UTC

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

2020-01-30 03:12:36 UTC

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

2020-01-30 03:12:38 UTC

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

2020-01-30 03:12:38 UTC

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

2020-01-30 03:12:39 UTC

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

2020-01-30 03:12:42 UTC

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

2020-01-30 03:12:45 UTC

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

2020-01-30 03:12:46 UTC

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

2020-01-30 03:12:46 UTC

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

Details
Created

2020-01-30 02:53:46 UTC

Size

13.7 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

5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7

PG_VERSION

9.6.16


Layers

[#000] sha256:8fa90b21c985a6fcfff966bdfbde81cdd088de0aa8af38110057f6ac408f4408 - 18.89% (2.6 MB)

[#001] sha256:9db837ff5778a13ace9e439e3bff33c317ecca84803a142a4ee4e05d2af54def - 0.01% (1.24 KB)

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

[#003] sha256:c972a35f031edcc5519cb2d82fd3e75925c0f166bcc51cf07b5d0f6d6520ba98 - 81.02% (11.1 MB)

[#004] sha256:e156b311e59e67533aa89c29ebbbf0010a90dfe599a91e461be03237bea41a28 - 0.05% (6.99 KB)

[#005] sha256:7a2d8d5c59fcd5ec94c54bf9f2d43324ae4af5c52449b00a6340aa550fa1130e - 0.0% (162 Bytes)

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

[#007] sha256:d77b47d2704d263cad4b8f1e90c58d1d16d6227924428a9bdd1bdbf3cfeeeadc - 0.03% (3.75 KB)

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


History
2020-01-18 01:39:43 UTC

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

2020-01-18 01:39:43 UTC

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

2020-01-30 02:40:27 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:40:28 UTC

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

2020-01-30 02:40:29 UTC

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

2020-01-30 02:50:49 UTC

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

2020-01-30 02:50:50 UTC

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

2020-01-30 02:50:52 UTC

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

2020-01-30 02:53:26 UTC

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

2020-01-30 02:53:28 UTC

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

2020-01-30 02:53:30 UTC

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

2020-01-30 02:53:32 UTC

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

2020-01-30 02:53:39 UTC

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

2020-01-30 02:53:40 UTC

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

2020-01-30 02:53:40 UTC

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

2020-01-30 02:53:44 UTC

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

2020-01-30 02:53:45 UTC

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

2020-01-30 02:53:46 UTC

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

2020-01-30 02:53:46 UTC

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

Details
Created

2020-01-30 03:44:01 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

5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7

PG_VERSION

9.6.16


Layers

[#000] sha256:cd95c8a93e39dcaa0634a65d5b86a88bcd5c3092adb1f96504a7030faa165123 - 18.14% (2.69 MB)

[#001] sha256:0fa8af198a4c612619984a3d16dc2a9fb3f15835dfbf5269a9eab9a345ed4f14 - 0.01% (1.25 KB)

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

[#003] sha256:658b58d94cab97c61d02b3a48350135284a608d0320139f7a5eee377c6243940 - 81.78% (12.1 MB)

[#004] sha256:a9e35da3fdb3ab1ade3aef76ad7731b086f053589265905231456f7a1a3567b6 - 0.05% (6.99 KB)

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

[#006] sha256:ab5add389f209669a388abb071108374100f053ce522b5774e1a1a0ecee1070f - 0.0% (193 Bytes)

[#007] sha256:8d755d4533dbc318ffbb92b60488a2d0b77189f2f1040464217be65a9e40716c - 0.02% (3.75 KB)

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


History
2020-01-18 02:20:41 UTC

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

2020-01-18 02:20:45 UTC

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

2020-01-30 03:20:01 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 03:20:03 UTC

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

2020-01-30 03:20:07 UTC

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

2020-01-30 03:40:19 UTC

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

2020-01-30 03:40:22 UTC

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

2020-01-30 03:40:27 UTC

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

2020-01-30 03:43:14 UTC

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

2020-01-30 03:43:22 UTC

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

2020-01-30 03:43:29 UTC

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

2020-01-30 03:43:32 UTC

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

2020-01-30 03:43:38 UTC

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

2020-01-30 03:43:40 UTC

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

2020-01-30 03:43:41 UTC

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

2020-01-30 03:43:50 UTC

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

2020-01-30 03:43:53 UTC

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

2020-01-30 03:43:59 UTC

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

2020-01-30 03:44:01 UTC

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

Details
Created

2020-01-30 03:02:38 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

5c6cba9cc0df70ba2b128c4a87d0babfce7c0e2b888f70a9c8485745f66b22e7

PG_VERSION

9.6.16


Layers

[#000] sha256:176bad61a3a435da03ec603d2bd8f7a69286d92f21f447b17f21f0bc4e085bde - 18.12% (2.46 MB)

[#001] sha256:b1d0ab56996305262d42136eee090848bbdf7cec28b8625e39078668b245db48 - 0.01% (1.25 KB)

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

[#003] sha256:0a126ed3287b34fe720c506263021e7e31a184968e7ff47b009d604aa72ad689 - 81.79% (11.1 MB)

[#004] sha256:f188c64d812928562f857ddf834ec04f744e6003fab53071d9467debe4c5b5c4 - 0.05% (6.99 KB)

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

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

[#007] sha256:b4df51723193fea68bd8c8f608c1a8fafa9818e3006e1eb2d8e8993485db490b - 0.03% (3.75 KB)

[#008] sha256:724156134ac6ffb3e96504c647e1f00d5d6d02bbf8f812d98a683f4c28c8ebf2 - 0.0% (121 Bytes)


History
2020-01-18 01:41:33 UTC

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

2020-01-18 01:41:33 UTC

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

2020-01-30 02:48:55 UTC

/bin/sh -c set -eux; addgroup -g 70 -S postgres; adduser -u 70 -S -D -G postgres -H -h /var/lib/postgresql postgres; mkdir -p /var/lib/postgresql; chown -R postgres:postgres /var/lib/postgresql

2020-01-30 02:48:56 UTC

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

2020-01-30 02:48:56 UTC

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

2020-01-30 02:59:45 UTC

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

2020-01-30 02:59:45 UTC

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

2020-01-30 02:59:45 UTC

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

2020-01-30 03:02:34 UTC

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

2020-01-30 03:02:35 UTC

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

2020-01-30 03:02:36 UTC

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

2020-01-30 03:02:36 UTC

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

2020-01-30 03:02:37 UTC

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

2020-01-30 03:02:37 UTC

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

2020-01-30 03:02:37 UTC

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

2020-01-30 03:02:38 UTC

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

2020-01-30 03:02:38 UTC

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

2020-01-30 03:02:38 UTC

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

2020-01-30 03:02:38 UTC

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