Tag

library/postgres:9.5.4
Content Digest: sha256:1480f2446dabb1116fafa426ac530d2404277873a84dc4a4d0d9d4b37a5601e8
Details
Pull Command

docker pull io.docker.registry-1.mirror.anurin.name/library/postgres:9.5.4


Manifests
Details
Content Digest

sha256:2417ea518abc0db32cf2fb0d021ce57dab2e16f480ac924000e52afd07d3b0a4

Created

2016-10-22 00:27:32 UTC

Size

96.6 MB


Environment
GOSU_VERSION

1.7

LANG

en_US.utf8

PATH

/usr/lib/postgresql/9.5/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PGDATA

/var/lib/postgresql/data

PG_MAJOR

9.5

PG_VERSION

9.5.4-1.pgdg80+2


Layers

[#000] sha256:43c265008fae5d1f3cbee0dac9697235320b174d85acbed002a4fe44236adec0 - 50.7% (49 MB)

[#001] sha256:215df7ad1b9befb2dffcb9e479c3188cae86893b676de1b4c9c1f4acc2327b7d - 0.0% (2 KB)

[#002] sha256:833a4a9c3573e61e91a092bafde646d8679f852ca221c76143e431a87b8ed06e - 1.2% (1.16 MB)

[#003] sha256:e5716357a052f614f869a7277fb4492c69a98c5628517dfe493d981a64e49d8f - 6.78% (6.55 MB)

[#004] sha256:6552dfce18a32eb601a1f854d5eabe82aea2f79c102a427dba22c4fbf831e329 - 0.0% (114 Bytes)

[#005] sha256:b75b371d1e9f8a4ca71f0866349d9462a04896afef650ea3e631825ada19836b - 0.0% (3.33 KB)

[#006] sha256:ecc63fd465b8e39e4858bf2b00a2f44171b1b1142802abec80170b3d7a0ed8f2 - 0.0% (227 Bytes)

[#007] sha256:8eb11995a95ad8bc35b2bdbaadb3252f06443846406bd63dcc70c4d6b297397e - 41.31% (39.9 MB)

[#008] sha256:9c82fb17fc44110db494721af806193cd3dace12b5a244e38cc654fe895bd1c4 - 0.01% (6.7 KB)

[#009] sha256:389787480cc253c61d02e0e7450a7f5ca2ffb770459bb81674648363c2dcb1e1 - 0.0% (130 Bytes)

[#010] sha256:01988d09a399d3860650f4c7b550bc90c7e65454aa69dad96f09a3ad1f1802bf - 0.0% (1.22 KB)


History
2016-10-21 16:22:34 UTC

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

2016-10-21 16:22:34 UTC

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

2016-10-22 00:19:10 UTC

/bin/sh -c groupadd -r postgres --gid=999 && useradd -r -g postgres --uid=999 postgres

2016-10-22 00:19:11 UTC

/bin/sh -c #(nop) ENV GOSU_VERSION=1.7

2016-10-22 00:19:28 UTC

/bin/sh -c set -x && apt-get update && apt-get install -y --no-install-recommends ca-certificates wget && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove ca-certificates wget

2016-10-22 00:19:36 UTC

/bin/sh -c apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/* && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8

2016-10-22 00:19:36 UTC

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

2016-10-22 00:19:37 UTC

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

2016-10-22 00:19:39 UTC

/bin/sh -c apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8

2016-10-22 00:26:53 UTC

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

2016-10-22 00:26:53 UTC

/bin/sh -c #(nop) ENV PG_VERSION=9.5.4-1.pgdg80+2

2016-10-22 00:26:54 UTC

/bin/sh -c echo 'deb http://apt.postgresql.org/pub/repos/apt/ jessie-pgdg main' $PG_MAJOR > /etc/apt/sources.list.d/pgdg.list

2016-10-22 00:27:27 UTC

/bin/sh -c apt-get update && apt-get install -y postgresql-common && sed -ri 's/#(create_main_cluster) .*$/\1 = false/' /etc/postgresql-common/createcluster.conf && apt-get install -y postgresql-$PG_MAJOR=$PG_VERSION postgresql-contrib-$PG_MAJOR=$PG_VERSION && rm -rf /var/lib/apt/lists/*

2016-10-22 00:27:28 UTC

/bin/sh -c mv -v /usr/share/postgresql/$PG_MAJOR/postgresql.conf.sample /usr/share/postgresql/ && ln -sv ../postgresql.conf.sample /usr/share/postgresql/$PG_MAJOR/ && sed -ri "s!^#?(listen_addresses)\s*=\s*\S+.*!\1 = '*'!" /usr/share/postgresql/postgresql.conf.sample

2016-10-22 00:27:29 UTC

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

2016-10-22 00:27:30 UTC

/bin/sh -c #(nop) ENV PATH=/usr/lib/postgresql/9.5/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2016-10-22 00:27:30 UTC

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

2016-10-22 00:27:31 UTC

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

2016-10-22 00:27:31 UTC

/bin/sh -c #(nop) COPY file:aefa30113260f63949e77cbc9a66aa22f27b1f79479507fd0d32f9b6a6994d69 in /

2016-10-22 00:27:32 UTC

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

2016-10-22 00:27:32 UTC

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

2016-10-22 00:27:32 UTC

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