Namespace
library
Image / Tag
postgres:9.4.20-alpine
Content Digest
sha256:8f50ddea8add79dbdd03d52b16629d48dc983c24d7aa10fcb713bdb2f7445298
Details
Created

2019-02-06 21:11:27 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

9.4

PG_SHA256

eeb1d8ddb2854c9e4d8b5cbd65665260c0ae8cbcb911003f24c2d82ccb97f87f

PG_VERSION

9.4.20


Layers

[#000] sha256:bcb4f889a459d231e71d88c93174eec5edef928ab1e2481f8b0074076ee934a6 - 18.88% (2.62 MB)

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

[#002] sha256:28707ab16cad86cb30cd0ea91c02c4829fa45e96504435a6ddf9b80190e85967 - 0.0% (147 Bytes)

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

[#004] sha256:33464b32184ca3ff678e441a217202efe818661153e56f055db550e459412910 - 81.05% (11.3 MB)

[#005] sha256:65f876b579f45882b8b545dfbefb32432962fff3978f578073533f6b4eb756ce - 0.05% (6.51 KB)

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

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

[#008] sha256:2e622ca07a9f8c4611a4c7f2359bc32f3e92d35ce2784f59c005a9579e117ada - 0.02% (2.32 KB)

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


History
2019-01-31 11:38:57 UTC

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

2019-01-31 11:38:57 UTC

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

2019-01-31 11:38:57 UTC

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

2019-02-06 20:35:16 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-02-06 20:35:17 UTC

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

2019-02-06 20:35:18 UTC

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

2019-02-06 21:05:57 UTC

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

2019-02-06 21:05:58 UTC

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

2019-02-06 21:05:58 UTC

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

2019-02-06 21:11: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

2019-02-06 21:11:22 UTC

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

2019-02-06 21:11:23 UTC

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

2019-02-06 21:11:23 UTC

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

2019-02-06 21:11:24 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)

2019-02-06 21:11:25 UTC

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

2019-02-06 21:11:25 UTC

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

2019-02-06 21:11:26 UTC

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

2019-02-06 21:11:27 UTC

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

2019-02-06 21:11:27 UTC

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

2019-02-06 21:11:27 UTC

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

Details
Created

2019-02-05 20:50:44 UTC

Size

13.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.4

PG_SHA256

eeb1d8ddb2854c9e4d8b5cbd65665260c0ae8cbcb911003f24c2d82ccb97f87f

PG_VERSION

9.4.20


Layers

[#000] sha256:6c40cc604d8e4c121adcb6b0bfe8bb038815c350980090e74aa5a6423f8f82c0 - 19.66% (2.63 MB)

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

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

[#003] sha256:232473d82bb83a35997cbad8f0e4370e028a96fe64e401f177c6986fbce6063f - 80.27% (10.7 MB)

[#004] sha256:bcf570a8b0c16b3d3eb9bfb895575fdd7ba3653b42d2c1f8ba62a8c75fdf27d2 - 0.05% (6.5 KB)

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

[#006] sha256:347f37764e7319bd3554b00977a5bedcb6a2213fa009c4a7fb3ab7a68fcba659 - 0.0% (171 Bytes)

[#007] sha256:df215e420647587b599bc22fa975e39b290dc11b6a2f04570b14352a044bf285 - 0.02% (2.32 KB)

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


History
2019-01-30 22:19:52 UTC

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

2019-01-30 22:19:52 UTC

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

2019-02-05 20:34: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"

2019-02-05 20:34:28 UTC

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

2019-02-05 20:34:29 UTC

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

2019-02-05 20:47:18 UTC

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

2019-02-05 20:47:18 UTC

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

2019-02-05 20:47:18 UTC

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

2019-02-05 20:50:38 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

2019-02-05 20:50:39 UTC

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

2019-02-05 20:50:40 UTC

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

2019-02-05 20:50:41 UTC

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

2019-02-05 20:50:42 UTC

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

2019-02-05 20:50:42 UTC

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

2019-02-05 20:50:42 UTC

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

2019-02-05 20:50:43 UTC

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

2019-02-05 20:50:43 UTC

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

2019-02-05 20:50:44 UTC

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

2019-02-05 20:50:44 UTC

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

Details
Created

2019-02-06 09:25:04 UTC

Size

12.8 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.4

PG_SHA256

eeb1d8ddb2854c9e4d8b5cbd65665260c0ae8cbcb911003f24c2d82ccb97f87f

PG_VERSION

9.4.20


Layers

[#000] sha256:05276f4299f299c4d5ca6776672dcf52f03189b7004e747fd1c2b759d9157831 - 18.99% (2.42 MB)

[#001] sha256:5657e63df53674891643732c236f7932524d1710ce42d916bb3c889a8652df67 - 0.0% (173 Bytes)

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

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

[#004] sha256:944afca561d5a9f2bbf5d9a29d289ea6d2d29d289e897c995568a481d3a919c8 - 80.93% (10.3 MB)

[#005] sha256:8845ff382b218194fa238d562c984f059bb93b16d295036e3608f4e347473926 - 0.05% (6.51 KB)

[#006] sha256:d60bc49d154408ad00b8d4e0435f14731148d5f47f3674cd3313a89c84dea633 - 0.0% (162 Bytes)

[#007] sha256:1c29ec43d6f46b1f27f80b04b4cee718e73a25bf46034a784f9679de40b183ce - 0.0% (201 Bytes)

[#008] sha256:1222ada5e7772c69f0c055ec22bf5113e535bccd70e897a1585636d7c8691a26 - 0.02% (2.32 KB)

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


History
2019-01-31 08:50:08 UTC

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

2019-01-31 08:50:09 UTC

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

2019-01-31 08:50:09 UTC

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

2019-02-06 09:14:36 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-02-06 09:14:36 UTC

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

2019-02-06 09:14:38 UTC

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

2019-02-06 09:23:18 UTC

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

2019-02-06 09:23:18 UTC

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

2019-02-06 09:23:18 UTC

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

2019-02-06 09:24: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 && 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

2019-02-06 09:24:58 UTC

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

2019-02-06 09:24:59 UTC

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

2019-02-06 09:24:59 UTC

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

2019-02-06 09:25:01 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)

2019-02-06 09:25:01 UTC

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

2019-02-06 09:25:02 UTC

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

2019-02-06 09:25:03 UTC

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

2019-02-06 09:25:03 UTC

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

2019-02-06 09:25:04 UTC

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

2019-02-06 09:25:04 UTC

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

Details
Created

2019-02-06 16:33:30 UTC

Size

13.2 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.4

PG_SHA256

eeb1d8ddb2854c9e4d8b5cbd65665260c0ae8cbcb911003f24c2d82ccb97f87f

PG_VERSION

9.4.20


Layers

[#000] sha256:ee02fa18913c824d1d1c9b680f1a43dad343b9d6c086a6bc62e3361c3d3a2d63 - 19.39% (2.56 MB)

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

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

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

[#004] sha256:70dddc8fa16cca02ea6e83a4a075be1555dc0fd6c9b987e8e2c85d494788aa1f - 80.54% (10.6 MB)

[#005] sha256:29e80b8a720faa556dd53fbc0d5211d4b371193e29e2c952e639c20d6cb11d32 - 0.05% (6.5 KB)

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

[#007] sha256:86a1ba1e67c969a8aa105a8582388033d521c9e23f223697edc97db152dd02e1 - 0.0% (170 Bytes)

[#008] sha256:165d4cbea03815b5c47d9a554ef671bc28f946a01eb62aa4d95c36047dd7b7d8 - 0.02% (2.32 KB)

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


History
2019-01-31 09:40:55 UTC

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

2019-01-31 09:40:56 UTC

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

2019-01-31 09:40:57 UTC

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

2019-02-06 13:29:54 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-02-06 13:29:55 UTC

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

2019-02-06 13:29:59 UTC

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

2019-02-06 16:27:10 UTC

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

2019-02-06 16:27:11 UTC

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

2019-02-06 16:27:13 UTC

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

2019-02-06 16:33:17 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

2019-02-06 16:33:20 UTC

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

2019-02-06 16:33:22 UTC

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

2019-02-06 16:33:23 UTC

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

2019-02-06 16:33:24 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)

2019-02-06 16:33:25 UTC

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

2019-02-06 16:33:26 UTC

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

2019-02-06 16:33:27 UTC

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

2019-02-06 16:33:28 UTC

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

2019-02-06 16:33:29 UTC

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

2019-02-06 16:33:30 UTC

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

Details
Created

2019-02-06 12:20:10 UTC

Size

14.4 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.4

PG_SHA256

eeb1d8ddb2854c9e4d8b5cbd65665260c0ae8cbcb911003f24c2d82ccb97f87f

PG_VERSION

9.4.20


Layers

[#000] sha256:3261f066f954b13c338d7bebabcc22a2a4037bfe4c6989b60595b13ac629445f - 18.37% (2.65 MB)

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

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

[#003] sha256:7cb66482184d38f93227b425be2fbb9de95131fd2822a5a879a050859ff43147 - 0.0% (148 Bytes)

[#004] sha256:e96d39116b0009b0f2949782ea617bd2b11613bc7cec039a5278d5ce2e1e1199 - 81.57% (11.8 MB)

[#005] sha256:6f3560f8da9439fb578428bc2a4e552f1bbd5f036048dabbd49c55750b2f1393 - 0.04% (6.5 KB)

[#006] sha256:3b080510c82316feb08015c69b59911145a6ea306315e6abd2e143d0e7983470 - 0.0% (161 Bytes)

[#007] sha256:63bce803b391b3cabe3ba9ad7388ed95c5a34023371f99c4c44d0de06da677dc - 0.0% (201 Bytes)

[#008] sha256:64dd00825e397f6ec5d4c9a971a3664606a799687e428da1597825e8e52a1c6e - 0.02% (2.32 KB)

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


History
2019-01-31 09:21:00 UTC

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

2019-01-31 09:21:01 UTC

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

2019-01-31 09:21:02 UTC

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

2019-02-06 11:49:43 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-02-06 11:49:45 UTC

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

2019-02-06 11:49:53 UTC

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

2019-02-06 12:16:58 UTC

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

2019-02-06 12:17:00 UTC

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

2019-02-06 12:17:01 UTC

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

2019-02-06 12:19:43 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

2019-02-06 12:19:49 UTC

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

2019-02-06 12:19:53 UTC

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

2019-02-06 12:19:54 UTC

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

2019-02-06 12:19: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)

2019-02-06 12:20:00 UTC

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

2019-02-06 12:20:00 UTC

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

2019-02-06 12:20:04 UTC

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

2019-02-06 12:20:05 UTC

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

2019-02-06 12:20:07 UTC

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

2019-02-06 12:20:10 UTC

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

Details
Created

2019-02-06 14:28:52 UTC

Size

13 MB

Content Digest
Environment
LANG

en_US.utf8

PATH

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

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.4

PG_SHA256

eeb1d8ddb2854c9e4d8b5cbd65665260c0ae8cbcb911003f24c2d82ccb97f87f

PG_VERSION

9.4.20


Layers

[#000] sha256:11396e2e564eba3ffa05ba6ea52a711025650a7cfe1387d6a59fdd9a90f2e024 - 18.58% (2.42 MB)

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

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

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

[#004] sha256:321accc3d8dfd3617eca80964d64a2243755b2422b8b3405721d227232312707 - 81.34% (10.6 MB)

[#005] sha256:243c0bea34d92de4ba649513d82dfd86fd7de58347f84653107fe83c081ad3e1 - 0.05% (6.51 KB)

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

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

[#008] sha256:51eff7132a162d300c697f117a7caaa502e552cf6a5812a80984d623fc608093 - 0.02% (2.32 KB)

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


History
2019-01-31 12:41:43 UTC

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

2019-01-31 12:41:44 UTC

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

2019-01-31 12:41:44 UTC

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

2019-02-06 13:38:18 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-02-06 13:38:18 UTC

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

2019-02-06 13:38:19 UTC

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

2019-02-06 14:26:25 UTC

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

2019-02-06 14:26:25 UTC

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

2019-02-06 14:26:25 UTC

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

2019-02-06 14:28: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 && 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

2019-02-06 14:28:49 UTC

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

2019-02-06 14:28:50 UTC

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

2019-02-06 14:28:50 UTC

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

2019-02-06 14:28:51 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)

2019-02-06 14:28:51 UTC

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

2019-02-06 14:28:51 UTC

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

2019-02-06 14:28:52 UTC

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

2019-02-06 14:28:52 UTC

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

2019-02-06 14:28:52 UTC

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

2019-02-06 14:28:52 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