Tag

library/postgres:12-rc1-alpine
Content Digest: sha256:6144ec9faaf3cfb0cd3845911c7ffba50f3a5a16aa3e46a3384cdebecdf486db
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:12-rc1-alpine


Manifests
Details
Content Digest

sha256:de175ad139161530d6630e7d35c22b526d5acefff91221b4e99cc475cb9b763c

Created

2019-09-27 02:59:27 UTC

Size

29.7 MB


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

12

PG_SHA256

40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

PG_VERSION

12rc1


Layers

[#000] sha256:386917d33cd4db230c24457c55c22bc9f639979df078521f2e6d9b2c6df01f0f - 8.91% (2.65 MB)

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

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

[#003] sha256:0f5560b6395f0135bd083b02d8fe1b84b814323e6bf84fc99ed2003bf96ce10f - 91.05% (27.1 MB)

[#004] sha256:6b4d9a0d1a844d86b9210f6a6c96c686c348806d7661c22644d5baf416b16ec6 - 0.03% (8.01 KB)

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

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

[#007] sha256:c1c8f075c3017dcca64b595eac063145d3d88d913c4a60292742a8dad7e4c59c - 0.01% (2.32 KB)


History
2019-08-20 20:38:45 UTC

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

2019-08-20 20:38:45 UTC

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

2019-08-20 21:13:08 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-08-20 21:13:08 UTC

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

2019-08-20 21:13:09 UTC

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

2019-08-20 21:13:09 UTC

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

2019-09-27 02:55:24 UTC

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

2019-09-27 02:55:24 UTC

/bin/sh -c #(nop) ENV PG_SHA256=40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

2019-09-27 02:59:23 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 icu-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 --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-09-27 02:59:24 UTC

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

2019-09-27 02:59:25 UTC

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

2019-09-27 02:59:25 UTC

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

2019-09-27 02:59:26 UTC

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

2019-09-27 02:59:26 UTC

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

2019-09-27 02:59:26 UTC

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

2019-09-27 02:59:26 UTC

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

2019-09-27 02:59:26 UTC

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

2019-09-27 02:59:27 UTC

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

Details
Content Digest

sha256:e834d22ff20f073a43bfe608f8a4d60008222789ad04574358d8a3d6b556912c

Created

2019-09-27 02:31:48 UTC

Size

28.8 MB


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

12

PG_SHA256

40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

PG_VERSION

12rc1


Layers

[#000] sha256:9d48c3bd43c520dc2784e868a780e976b207cbf493eaff8c6596eb871cbd9609 - 9.24% (2.66 MB)

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

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

[#003] sha256:6749068a9f2f5826ffb4c464fd2c05d84941b39ae0889ab29220c146896b6ed9 - 90.73% (26.1 MB)

[#004] sha256:6521bced179a0590e528d979cfdf83b8624e959f850f606f296a8fc8eaa4522a - 0.03% (8.02 KB)

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

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

[#007] sha256:556d15a4fdad04d6789b4426c1a823ba577dc9e2084aecafb00cc33ff2c81939 - 0.01% (2.31 KB)


History
2019-08-20 20:19:55 UTC

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

2019-08-20 20:19:55 UTC

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

2019-08-21 00:39:48 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-08-21 00:39:49 UTC

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

2019-08-21 00:39:49 UTC

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

2019-08-21 00:39:50 UTC

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

2019-09-27 02:28:09 UTC

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

2019-09-27 02:28:09 UTC

/bin/sh -c #(nop) ENV PG_SHA256=40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

2019-09-27 02:31:44 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 icu-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 --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-09-27 02:31:45 UTC

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

2019-09-27 02:31:46 UTC

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

2019-09-27 02:31:46 UTC

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

2019-09-27 02:31:47 UTC

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

2019-09-27 02:31:47 UTC

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

2019-09-27 02:31:47 UTC

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

2019-09-27 02:31:47 UTC

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

2019-09-27 02:31:47 UTC

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

2019-09-27 02:31:48 UTC

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

Details
Content Digest

sha256:4003d3aadb73bb3e0c4ecf279faf4efa9f52b925da50f04d70bed192d730ae73

Created

2019-09-27 00:52:03 UTC

Size

27.7 MB


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

12

PG_SHA256

40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

PG_VERSION

12rc1


Layers

[#000] sha256:1df32bae7504a32024616c66017cd5df04dd98eaf150f8df45fffef2547a3c54 - 8.84% (2.45 MB)

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

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

[#003] sha256:5a5414608aaf78c545f7ec99a676c631818506ad4bced77bba6960a459c2230b - 91.12% (25.2 MB)

[#004] sha256:a1cc1ad0567bd160d7950e7c93b595b8e66bad87cebd6e5fa5d6e445c4f8d550 - 0.03% (8.02 KB)

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

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

[#007] sha256:7a1c1dac3e135563aefaf26445bb47f3616611d7b50bd14db5464f2d681203f9 - 0.01% (2.31 KB)


History
2019-08-20 19:49:33 UTC

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

2019-08-20 19:49:33 UTC

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

2019-08-20 21:16: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"

2019-08-20 21:16:41 UTC

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

2019-08-20 21:16:43 UTC

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

2019-08-20 21:16:43 UTC

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

2019-09-27 00:49:37 UTC

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

2019-09-27 00:49:38 UTC

/bin/sh -c #(nop) ENV PG_SHA256=40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

2019-09-27 00:51:50 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 icu-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 --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-09-27 00:51:54 UTC

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

2019-09-27 00:51:56 UTC

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

2019-09-27 00:51:56 UTC

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

2019-09-27 00:51:59 UTC

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

2019-09-27 00:52:00 UTC

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

2019-09-27 00:52:00 UTC

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

2019-09-27 00:52:01 UTC

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

2019-09-27 00:52:02 UTC

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

2019-09-27 00:52:03 UTC

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

Details
Content Digest

sha256:06ff2df400dc3af61a7cb185c9711bc89d11126539290d97faf35003990d3604

Created

2019-09-27 02:46:17 UTC

Size

26.6 MB


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

12

PG_SHA256

40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

PG_VERSION

12rc1


Layers

[#000] sha256:33b18ff7f9b776f4049934d6f7e29a4dc7b45b42e5e686425c7673b2bbfec7de - 8.52% (2.27 MB)

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

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

[#003] sha256:f1b337d8220288ac77dbecc57723255058066b7ddb2e6817ad7881357e33f47c - 91.44% (24.3 MB)

[#004] sha256:5aeb256698453727a588550cd810e5d74cc548927b7beae0137172cf865f53fb - 0.03% (8.02 KB)

[#005] sha256:90e7d679429f1b27f7a9a487e4a29b36a00c51c38a4e5ee9c6f5d7bac92d197b - 0.0% (163 Bytes)

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

[#007] sha256:79d7b93ad847fc8541b4d318b9c0d14d6785bf40af34aee03e9e11eb453ec7fa - 0.01% (2.32 KB)


History
2019-08-20 19:57:31 UTC

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

2019-08-20 19:57:32 UTC

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

2019-08-20 20:31:13 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-08-20 20:31:14 UTC

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

2019-08-20 20:31:15 UTC

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

2019-08-20 20:31:16 UTC

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

2019-09-27 02:44:07 UTC

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

2019-09-27 02:44:08 UTC

/bin/sh -c #(nop) ENV PG_SHA256=40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

2019-09-27 02:46:07 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 icu-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 --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-09-27 02:46:10 UTC

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

2019-09-27 02:46:12 UTC

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

2019-09-27 02:46:12 UTC

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

2019-09-27 02:46:14 UTC

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

2019-09-27 02:46:15 UTC

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

2019-09-27 02:46:15 UTC

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

2019-09-27 02:46:16 UTC

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

2019-09-27 02:46:17 UTC

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

2019-09-27 02:46:17 UTC

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

Details
Content Digest

sha256:58068c335bc36a6dd7866e1972de28a98538c11c208527c43bc7535ca60beb68

Created

2019-09-27 02:47:32 UTC

Size

28.6 MB


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

12

PG_SHA256

40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

PG_VERSION

12rc1


Layers

[#000] sha256:29bddadc8f3fd6ed92c289e0dcd22e094833933a73609e78b7fa767d45731f9f - 9.05% (2.59 MB)

[#001] sha256:4f425924f33f92651d44421fa8e35836e2a0ec489815c7812a71ee21b3e3c0e1 - 0.0% (180 Bytes)

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

[#003] sha256:b33037eb3622b2c6d7c2f8966d18197896473c64a1e6ff3b4d67a1715c932c74 - 90.91% (26 MB)

[#004] sha256:e70181aa5b60b5f6ccc8192c3fe660eff6734fc6de9543eab8ef81e201882115 - 0.03% (8.02 KB)

[#005] sha256:28850062d2cb50faccf10cb3deb38c6a0c5a5be9fcc654c67644b589c3b9b772 - 0.0% (162 Bytes)

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

[#007] sha256:9b729b61e7e8bc686ee24ccd72b77e5fb0378327fee89cbf54d5489ad4d717d7 - 0.01% (2.32 KB)


History
2019-08-20 20:39:38 UTC

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

2019-08-20 20:39:38 UTC

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

2019-08-21 00:47:26 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-08-21 00:47:26 UTC

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

2019-08-21 00:47:27 UTC

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

2019-08-21 00:47:28 UTC

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

2019-09-27 02:44:49 UTC

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

2019-09-27 02:44:49 UTC

/bin/sh -c #(nop) ENV PG_SHA256=40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

2019-09-27 02:47:16 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 icu-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 --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-09-27 02:47:19 UTC

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

2019-09-27 02:47:21 UTC

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

2019-09-27 02:47:22 UTC

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

2019-09-27 02:47:24 UTC

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

2019-09-27 02:47:26 UTC

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

2019-09-27 02:47:26 UTC

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

2019-09-27 02:47:28 UTC

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

2019-09-27 02:47:30 UTC

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

2019-09-27 02:47:32 UTC

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

Details
Content Digest

sha256:447c82189e9ed9bd7d916c90f214cabe07e55f8e04f16c27e85bc29a5a499eae

Created

2019-09-27 02:32:26 UTC

Size

30.1 MB


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

12

PG_SHA256

40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

PG_VERSION

12rc1


Layers

[#000] sha256:f6e17decc5b0c8e3fe1dd641401f72ceca0ff203a6afbdee90ac5b2de7d6d4cb - 8.9% (2.68 MB)

[#001] sha256:273d223a69c1748af3e0226fd57b6d372f07eb3b4fcb50023acc8353cd40e1aa - 0.0% (178 Bytes)

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

[#003] sha256:d520f95513272cdbd3017f23eed587e8febc792e917e9a23f64b9d624bf22647 - 91.06% (27.4 MB)

[#004] sha256:61947b86e1b427a58b18f59359bdb0f4b4f93f92896c70bea9039531582fd71e - 0.03% (8.02 KB)

[#005] sha256:c2d95f07e06deb6115820a710c3e45fee9890db96129cbfd1d51ff42208d54f3 - 0.0% (163 Bytes)

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

[#007] sha256:3765ca74bd95faa2303cb6da346458c80756820f92adc647f48240089ae8109e - 0.01% (2.32 KB)


History
2019-08-20 20:26:01 UTC

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

2019-08-20 20:26:03 UTC

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

2019-08-21 00:18:57 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-08-21 00:18:58 UTC

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

2019-08-21 00:19:05 UTC

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

2019-08-21 00:19:06 UTC

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

2019-09-27 02:28:29 UTC

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

2019-09-27 02:28:31 UTC

/bin/sh -c #(nop) ENV PG_SHA256=40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

2019-09-27 02:31:53 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 icu-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 --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-09-27 02:32:00 UTC

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

2019-09-27 02:32:06 UTC

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

2019-09-27 02:32:08 UTC

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

2019-09-27 02:32:13 UTC

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

2019-09-27 02:32:16 UTC

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

2019-09-27 02:32:17 UTC

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

2019-09-27 02:32:20 UTC

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

2019-09-27 02:32:23 UTC

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

2019-09-27 02:32:26 UTC

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

Details
Content Digest

sha256:520d5107ab494d55ecb9c319d3c16e12310b279eeaae044530275590acf58bbd

Created

2019-09-27 00:56:05 UTC

Size

28.3 MB


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

12

PG_SHA256

40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

PG_VERSION

12rc1


Layers

[#000] sha256:407ea80cb4d5f522b989a33f21507f3c566691fdbdc5a2c97d08ae37916c8501 - 8.65% (2.45 MB)

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

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

[#003] sha256:1460217b0edd3b933893bd3358087e6c58f22912dbc63475560bb554ab7323c7 - 91.32% (25.9 MB)

[#004] sha256:9f88c5c023ac1035f27b3c895f78e2e8a6cfb7d3b01d61098271c4c61512ae67 - 0.03% (8.02 KB)

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

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

[#007] sha256:f97e93a21dcf5a04b473cc68a7bf13e57fac03633ba73d2a5b8c87c5989ae88f - 0.01% (2.31 KB)


History
2019-08-20 20:42:38 UTC

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

2019-08-20 20:42:39 UTC

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

2019-08-21 05:26:39 UTC

/bin/sh -c set -ex; postgresHome="$(getent passwd postgres)"; postgresHome="$(echo "$postgresHome" | cut -d: -f6)"; [ "$postgresHome" = '/var/lib/postgresql' ]; mkdir -p "$postgresHome"; chown -R postgres:postgres "$postgresHome"

2019-08-21 05:26:39 UTC

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

2019-08-21 05:26:40 UTC

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

2019-08-21 05:26:41 UTC

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

2019-09-27 00:53:21 UTC

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

2019-09-27 00:53:21 UTC

/bin/sh -c #(nop) ENV PG_SHA256=40facd3280d8565f37139d2c5df2b94fe68a064c5d2784f74fceae24820543f3

2019-09-27 00:56: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 linux-headers make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev icu-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 --with-icu && make -j "$(nproc)" world && make install-world && make -C contrib install && runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )" && apk add --no-cache --virtual .postgresql-rundeps $runDeps bash su-exec tzdata && apk del .fetch-deps .build-deps && cd / && rm -rf /usr/src/postgresql /usr/local/share/doc /usr/local/share/man && find /usr/local -name '*.a' -delete

2019-09-27 00:56:02 UTC

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

2019-09-27 00:56:03 UTC

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

2019-09-27 00:56:03 UTC

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

2019-09-27 00:56:04 UTC

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

2019-09-27 00:56:04 UTC

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

2019-09-27 00:56:04 UTC

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

2019-09-27 00:56:04 UTC

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

2019-09-27 00:56:05 UTC

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

2019-09-27 00:56:05 UTC

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