Namespace
library
Image / Tag
postgres:10.4-alpine
Content Digest
sha256:b00851e5a07b910a18f9211cec807a1256cec38bbf7aa06859aba79acf79b3a8
Details
Created

2018-07-31 11:09:11 UTC

Size

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

1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048

PG_VERSION

10.4


Layers

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

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

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

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

[#004] sha256:ac0bfee89c3e18b1e8034b3f104602c9a05d124ff737b5dda1f174b0e05f41fa - 92.45% (26.6 MB)

[#005] sha256:318c3a48187d024caa9c734039baf452a6b043cc954d9fe8031c0d405cde9207 - 0.02% (7.1 KB)

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

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

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

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


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

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

2018-07-06 15:02:07 UTC

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

2018-07-06 15:02:07 UTC

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

2018-07-11 10:50:41 UTC

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

2018-07-11 10:50:42 UTC

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

2018-07-11 10:50:42 UTC

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

2018-07-11 10:53:45 UTC

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

2018-07-11 10:53:45 UTC

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

2018-07-11 10:53:45 UTC

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

2018-07-31 11:09:05 UTC

/bin/sh -c set -ex && apk add --no-cache --virtual .fetch-deps ca-certificates openssl tar && wget -O postgresql.tar.bz2 "https://ftp.postgresql.org/pub/source/v$PG_VERSION/postgresql-$PG_VERSION.tar.bz2" && echo "$PG_SHA256 *postgresql.tar.bz2" | sha256sum -c - && mkdir -p /usr/src/postgresql && tar --extract --file postgresql.tar.bz2 --directory /usr/src/postgresql --strip-components 1 && rm postgresql.tar.bz2 && apk add --no-cache --virtual .build-deps bison coreutils dpkg-dev dpkg flex gcc libc-dev libedit-dev libxml2-dev libxslt-dev make openssl-dev perl-utils perl-ipc-run util-linux-dev zlib-dev 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

2018-07-31 11:09:06 UTC

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

2018-07-31 11:09:07 UTC

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

2018-07-31 11:09:07 UTC

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

2018-07-31 11:09:08 UTC

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

2018-07-31 11:09:08 UTC

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

2018-07-31 11:09:09 UTC

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

2018-07-31 11:09:10 UTC

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

2018-07-31 11:09:10 UTC

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

2018-07-31 11:09:10 UTC

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

2018-07-31 11:09:11 UTC

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

Details
Created

2018-07-27 22:51:19 UTC

Size

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

1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048

PG_VERSION

10.4


Layers

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

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

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

[#003] sha256:e162a11eb12ca25250c4487793ac65fd3dd2910a80cb0ae3300b6a1b0d588f66 - 92.48% (26 MB)

[#004] sha256:788b2698f298255bc184da7de61bd28f23323aca64bd4605b7f70a2f58ca9a12 - 0.02% (7.1 KB)

[#005] sha256:109af6d3e982e3f76ac2136f91b30291fc41b419a2d5cba5605187f19045887a - 0.0% (128 Bytes)

[#006] sha256:798f27e0089de376a215ac71c056704a66cfcf787064286514e6deccb770d9ff - 0.0% (171 Bytes)

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

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


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

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

2018-07-06 14:14:06 UTC

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

2018-07-11 00:47:50 UTC

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

2018-07-11 00:47:50 UTC

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

2018-07-11 00:47:51 UTC

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

2018-07-11 00:50:58 UTC

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

2018-07-11 00:50:58 UTC

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

2018-07-11 00:50:58 UTC

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

2018-07-27 22:51:13 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 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

2018-07-27 22:51:14 UTC

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

2018-07-27 22:51:15 UTC

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

2018-07-27 22:51:15 UTC

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

2018-07-27 22:51: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-07-27 22:51:17 UTC

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

2018-07-27 22:51:17 UTC

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

2018-07-27 22:51:18 UTC

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

2018-07-27 22:51:18 UTC

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

2018-07-27 22:51:19 UTC

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

2018-07-27 22:51:19 UTC

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

Details
Created

2018-07-28 09:14:19 UTC

Size

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

1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048

PG_VERSION

10.4


Layers

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

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

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

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

[#004] sha256:0f3b2267294c59c9e13046925892e92901a583c7cffe5906bf267bb6cf4b9882 - 92.4% (25 MB)

[#005] sha256:7aeb1026069aa685b865bba8465fc361b3e7160ae29b11d802eab31ceeb2b4c0 - 0.03% (7.1 KB)

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

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

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

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


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

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

2018-07-06 07:53:30 UTC

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

2018-07-06 07:53:30 UTC

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

2018-07-14 07:49:44 UTC

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

2018-07-14 07:49:45 UTC

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

2018-07-14 07:49:49 UTC

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

2018-07-14 08:30:08 UTC

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

2018-07-14 08:30:08 UTC

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

2018-07-14 08:30:09 UTC

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

2018-07-28 09:13:56 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 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

2018-07-28 09:14:02 UTC

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

2018-07-28 09:14:05 UTC

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

2018-07-28 09:14:06 UTC

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

2018-07-28 09:14:11 UTC

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

2018-07-28 09:14:11 UTC

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

2018-07-28 09:14:13 UTC

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

2018-07-28 09:14:16 UTC

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

2018-07-28 09:14:16 UTC

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

2018-07-28 09:14:18 UTC

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

2018-07-28 09:14:19 UTC

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

Details
Created

2018-07-28 08:51:26 UTC

Size

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

1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048

PG_VERSION

10.4


Layers

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

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

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

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

[#004] sha256:fd6527c5062cedd113cc040b03696880399bb9070d5139c202d82ffc734fc4d7 - 92.51% (24.8 MB)

[#005] sha256:d27924d68c981fa140e3ac2da9c05382b96fd06641b6bf8499956b6bf40781f2 - 0.03% (7.1 KB)

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

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

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

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


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

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

2018-07-06 08:41:03 UTC

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

2018-07-06 08:41:04 UTC

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

2018-07-11 08:58:15 UTC

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

2018-07-11 08:58:15 UTC

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

2018-07-11 08:58:17 UTC

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

2018-07-11 09:03:33 UTC

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

2018-07-11 09:03:34 UTC

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

2018-07-11 09:03:34 UTC

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

2018-07-28 08:50:49 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 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

2018-07-28 08:50:52 UTC

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

2018-07-28 08:50:54 UTC

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

2018-07-28 08:50:56 UTC

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

2018-07-28 08:50:59 UTC

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

2018-07-28 08:51:02 UTC

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

2018-07-28 08:51:05 UTC

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

2018-07-28 08:51:13 UTC

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

2018-07-28 08:51:17 UTC

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

2018-07-28 08:51:22 UTC

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

2018-07-28 08:51:26 UTC

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

Details
Created

2018-08-01 12:58:52 UTC

Size

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

1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048

PG_VERSION

10.4


Layers

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

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

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

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

[#004] sha256:2086d2729a4eee89d046c7a46ac5624d650ebcec4c246e2d695d65ce2a947970 - 92.43% (25.7 MB)

[#005] sha256:a0697e9dfec24e6e7673877238e09c9c244bd47d56ae091cd2261ace74d5b654 - 0.02% (7.1 KB)

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

[#007] sha256:98d75164ee5ae8a974b6ff0cc152123c5468570c45caba0d4bb40ff272d922fc - 0.0% (201 Bytes)

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

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


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

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

2018-07-06 08:18:10 UTC

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

2018-07-06 08:18:11 UTC

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

2018-07-11 10:01:28 UTC

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

2018-07-11 10:01:29 UTC

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

2018-07-11 10:01:32 UTC

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

2018-07-11 10:07:00 UTC

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

2018-07-11 10:07:01 UTC

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

2018-07-11 10:07:02 UTC

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

2018-08-01 12:58: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 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

2018-08-01 12:58:26 UTC

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

2018-08-01 12:58:29 UTC

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

2018-08-01 12:58:32 UTC

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

2018-08-01 12:58:37 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-08-01 12:58:38 UTC

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

2018-08-01 12:58:40 UTC

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

2018-08-01 12:58:44 UTC

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

2018-08-01 12:58:48 UTC

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

2018-08-01 12:58:50 UTC

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

2018-08-01 12:58:52 UTC

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

Details
Created

2018-07-28 11:49:19 UTC

Size

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

1b60812310bd5756c62d93a9f93de8c28ea63b0df254f428cd1cf1a4d9020048

PG_VERSION

10.4


Layers

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

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

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

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

[#004] sha256:15eee97130c7645e0f6259a6d8def48fa09aecfb1ef36b87f49c71c12c7a8a7a - 92.13% (25.9 MB)

[#005] sha256:ffe9d41f8009e34cf58dff52b19e84c9d2a9c0c54df45ccf2f28c4e2db25b59f - 0.02% (7.09 KB)

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

[#007] sha256:3406eede6993e208a8471b6b9166c887b449e73e05e7d52e977e149361e6679d - 0.0% (170 Bytes)

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

[#009] sha256:6566813b79729389949a2ea49edd3fe783f44626ecdf8341ba7e877a7be1a631 - 0.0% (119 Bytes)


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

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

2018-07-06 11:41:43 UTC

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

2018-07-06 11:41:43 UTC

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

2018-07-11 11:52:46 UTC

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

2018-07-11 11:52:46 UTC

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

2018-07-11 11:52:47 UTC

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

2018-07-11 11:55:40 UTC

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

2018-07-11 11:55:40 UTC

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

2018-07-11 11:55:40 UTC

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

2018-07-28 11:49: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 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

2018-07-28 11:49:17 UTC

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

2018-07-28 11:49:17 UTC

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

2018-07-28 11:49:17 UTC

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

2018-07-28 11:49:18 UTC

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

2018-07-28 11:49:18 UTC

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

2018-07-28 11:49:18 UTC

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

2018-07-28 11:49:19 UTC

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

2018-07-28 11:49:19 UTC

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

2018-07-28 11:49:19 UTC

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

2018-07-28 11:49:19 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