Namespace
library
Image / Tag
postgres:10.2-alpine
Content Digest
sha256:2cdf8430d7c1f59b3d3808f672944491aabf0fdf15da5b5e158e9fa4162453bf
Details
Created

2018-02-19 18:14:32 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

10

PG_SHA256

fe32009b62ddb97f7f014307ce9d0edb6972f5a698e63cb531088e147d145bad

PG_VERSION

10.2


Layers

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

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

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

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

[#004] sha256:2eaba36c9608986f0081ce97483d4c30f9ee7f41a4f56db7e66196d3958960a7 - 86.2% (12.7 MB)

[#005] sha256:3fb056fb4b78b9b5a9ae239b1c86e5e7e10ef26b8f0ffb5703205aad4d358b99 - 0.05% (7.1 KB)

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

[#007] sha256:6afd1738250282ad75098455f5362e55f2dee39b1fd6b25cd44a05ade5639635 - 0.0% (170 Bytes)

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

[#009] sha256:b137a6a6018736280768ceb576c69cc81609a1fd5362c284ad3249bb622a1da0 - 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-02-19 17:52: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"

2018-02-19 17:56:09 UTC

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

2018-02-19 17:56:09 UTC

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

2018-02-19 18:00:43 UTC

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

2018-02-19 18:00:43 UTC

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

2018-02-19 18:00:44 UTC

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

2018-02-19 18:04: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 && 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

2018-02-19 18:10:09 UTC

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

2018-02-19 18:10:10 UTC

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

2018-02-19 18:14:16 UTC

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

2018-02-19 18:14:17 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-02-19 18:14:17 UTC

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

2018-02-19 18:14:18 UTC

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

2018-02-19 18:14:19 UTC

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

2018-02-19 18:14:31 UTC

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

2018-02-19 18:14:31 UTC

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

2018-02-19 18:14:32 UTC

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

Details
Created

2018-02-18 02:34:31 UTC

Size

14.3 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

fe32009b62ddb97f7f014307ce9d0edb6972f5a698e63cb531088e147d145bad

PG_VERSION

10.2


Layers

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

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

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

[#003] sha256:8df57d533e713644605296e9c7def657bb2c60b21b9dfbc7c07d19d346fd1057 - 86.11% (12.3 MB)

[#004] sha256:7858f71c02fb07429d05aba2b2acd0beb7a1d193e4cf8702aefaa7721ccb6806 - 0.05% (7.09 KB)

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

[#006] sha256:3fb44f23d3230288aa1adbf9e6672123b71c73010570dfe2afbe3b40d9f4986c - 0.0% (171 Bytes)

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

[#008] sha256:5492a5bead708f24738bbff12373f374c8a50ef0a9b7c176f15b033f20ecd5b5 - 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-02-18 02:31:32 UTC

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

2018-02-18 02:31:32 UTC

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

2018-02-18 02:31:32 UTC

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

2018-02-18 02:34:20 UTC

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

2018-02-18 02:34:27 UTC

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

2018-02-18 02:34:28 UTC

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

2018-02-18 02:34:28 UTC

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

2018-02-18 02:34:29 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-02-18 02:34:29 UTC

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

2018-02-18 02:34:30 UTC

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

2018-02-18 02:34:31 UTC

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

2018-02-18 02:34:31 UTC

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

2018-02-18 02:34:31 UTC

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

2018-02-18 02:34:31 UTC

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

Details
Created

2018-02-18 15:25:40 UTC

Size

13.1 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

10

PG_SHA256

fe32009b62ddb97f7f014307ce9d0edb6972f5a698e63cb531088e147d145bad

PG_VERSION

10.2


Layers

[#000] sha256:b78042c299ad99d1e646b18762d4bc22a84c4f88e5bb491ea6293a10f53ddf79 - 14.45% (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:08af2de580acbc5d587e6a824a927b0fe60fcf8f7f6c1569326939b625532099 - 85.48% (11.2 MB)

[#005] sha256:d9996e061e4be176b70afe80ea37b1f8d33a69769a30d8f91652138f44255f87 - 0.05% (7.1 KB)

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

[#007] sha256:1297a4ee831cf3d257ddf1495c4921f639d5b83f92e8d1313b38ddc1851b54d6 - 0.0% (171 Bytes)

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

[#009] sha256:ec6f68f4ad222272f189352a764f1a551ef2e32411b77fd34b50c4086ad1af5b - 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-02-18 15:21:18 UTC

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

2018-02-18 15:21:18 UTC

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

2018-02-18 15:21:19 UTC

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

2018-02-18 15:25: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 && 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

2018-02-18 15:25:32 UTC

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

2018-02-18 15:25:33 UTC

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

2018-02-18 15:25:34 UTC

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

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

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

2018-02-18 15:25:36 UTC

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

2018-02-18 15:25:38 UTC

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

2018-02-18 15:25:39 UTC

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

2018-02-18 15:25:39 UTC

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

2018-02-18 15:25:40 UTC

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

Details
Created

2018-02-17 23:05:14 UTC

Size

13.9 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

10

PG_SHA256

fe32009b62ddb97f7f014307ce9d0edb6972f5a698e63cb531088e147d145bad

PG_VERSION

10.2


Layers

[#000] sha256:0da653ea85b50d280ec56ca2eafb7e8b37590630356e043fa9ff162d55732a23 - 14.24% (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:9dc376f423a61fba740fb108149f5d7c51c557e791f4b4b9c13690903edf0fee - 85.69% (11.9 MB)

[#005] sha256:90cd33ffccd2e488aabefffd05b8a87c36fdeee99cdbc17b62122fb76ee14eb3 - 0.05% (7.09 KB)

[#006] sha256:201808e2b7378852011d655dc2f9336e5a408d81d1d0a8f2aa943cfb920f0120 - 0.0% (160 Bytes)

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

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

[#009] sha256:2d8ea3594befccee0f8df96b61f8b564ae943ca1bcafadce15684f34dc327811 - 0.0% (118 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-02-17 23:01:48 UTC

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

2018-02-17 23:01:50 UTC

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

2018-02-17 23:01:51 UTC

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

2018-02-17 23:04:45 UTC

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

2018-02-17 23:04:49 UTC

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

2018-02-17 23:04:53 UTC

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

2018-02-17 23:04:54 UTC

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

2018-02-17 23:04:58 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-02-17 23:04:59 UTC

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

2018-02-17 23:05:01 UTC

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

2018-02-17 23:05:07 UTC

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

2018-02-17 23:05:10 UTC

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

2018-02-17 23:05:12 UTC

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

2018-02-17 23:05:14 UTC

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

Details
Created

2018-02-18 10:27:56 UTC

Size

13.9 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

10

PG_SHA256

fe32009b62ddb97f7f014307ce9d0edb6972f5a698e63cb531088e147d145bad

PG_VERSION

10.2


Layers

[#000] sha256:11e7bc85614a236b32043d147930fd2bc9055af8642fe30e5e56142590572b0e - 15.01% (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:fde2daa3cd3f7041b0e70b2e5f9f5565fbc3dab681581d64582dee4e501e55a3 - 84.92% (11.8 MB)

[#005] sha256:b7a360256a57a9e554b56f745c67126db21d3b06083b8333db0afcbf43cb593f - 0.05% (7.1 KB)

[#006] sha256:9f67ff4026ffd1fdf0bc77c31b8aabd81293a7562074b1d62b4562a851abcf13 - 0.0% (129 Bytes)

[#007] sha256:88963822628011d556b55b317d505942f667f63768a068356e4445eec4898692 - 0.0% (171 Bytes)

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

[#009] sha256:260d98c3fdb6bb15085e1a9572dc14c5a81ffbd4ffa982b698423738312efd0c - 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-02-18 10:25:36 UTC

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

2018-02-18 10:25:36 UTC

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

2018-02-18 10:25:36 UTC

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

2018-02-18 10:27: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 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

2018-02-18 10:27:53 UTC

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

2018-02-18 10:27:54 UTC

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

2018-02-18 10:27:54 UTC

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

2018-02-18 10:27:54 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-02-18 10:27:55 UTC

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

2018-02-18 10:27:55 UTC

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

2018-02-18 10:27:55 UTC

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

2018-02-18 10:27:55 UTC

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

2018-02-18 10:27:56 UTC

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

2018-02-18 10:27:56 UTC

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

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete