Namespace
ceph
Image / Tag
daemon:master-1f77e56-kraken-centos-7-x86_64
Content Digest
sha256:96606e978dc6b244e60124fb87bdaa286baee22212b9278f5029d088c73185f5
Details
Created

2018-03-16 11:42:09 UTC

Size

203 MB

Content Digest
Labels
  • GIT_BRANCH
    HEAD
  • GIT_CLEAN
    True
  • GIT_COMMIT
    1f77e56921f86e4b29483a7ba0d48370492d8595
  • GIT_REPO
    https://github.com/ceph/ceph-container.git
  • RELEASE
    master-1f77e56
  • build-date
    20180302
  • license
    GPLv2
  • name
    CentOS Base Image
  • vendor
    CentOS

Environment
CEPH_VERSION

kraken

PATH

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


Layers

[#000] sha256:5e35d10a3ebadf9d6ab606ce72e1e77f8646b2e2ff8dd3a60d4401c3e3a76f31 - 34.36% (69.6 MB)

[#001] sha256:c6e9ebb025e150c866bed42d9d7c9b696f15177217fbcc19fc31ba824af9418e - 48.61% (98.5 MB)

[#002] sha256:a0a923d30e3ac9f0744344822fa538e3f07c238b300e89107f001325a1133430 - 17.01% (34.4 MB)

[#003] sha256:36038d19fb634aeacee1ef12bc77e0a04d6c64e0c19225bc74d5c1daf4097b74 - 0.0% (754 Bytes)

[#004] sha256:55541faa888eca96b3b2016bb060e62f0a306a397cb3a3595568a6012e94e446 - 0.0% (538 Bytes)

[#005] sha256:6c446f195176fd4241ffaf2edbdfdcdc4b1953b6774c516091072ec5aa053ff9 - 0.0% (285 Bytes)

[#006] sha256:13cf84b8701e58bc54a67e3be1b29b08c825159fdb6d06263e6716b92cab0def - 0.01% (24 KB)

[#007] sha256:224ad93255e5412b3dd995d6bdb7791d61a290e29df6acb6d6235dd876c6a590 - 0.0% (1.06 KB)


History
2018-03-06 00:48:12 UTC

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

2018-03-06 00:48:12 UTC

/bin/sh -c #(nop) LABEL name=CentOS Base Image vendor=CentOS license=GPLv2 build-date=20180302

2018-03-06 00:48:12 UTC

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

2018-03-16 11:38:49 UTC

/bin/sh -c #(nop) MAINTAINER Sébastien Han "seb@redhat.com"

2018-03-16 11:38:50 UTC

/bin/sh -c #(nop) LABEL RELEASE=master-1f77e56

2018-03-16 11:38:51 UTC

/bin/sh -c #(nop) LABEL GIT_REPO=https://github.com/ceph/ceph-container.git

2018-03-16 11:38:51 UTC

/bin/sh -c #(nop) LABEL GIT_BRANCH=HEAD

2018-03-16 11:38:52 UTC

/bin/sh -c #(nop) LABEL GIT_COMMIT=1f77e56921f86e4b29483a7ba0d48370492d8595

2018-03-16 11:38:52 UTC

/bin/sh -c #(nop) LABEL GIT_CLEAN=True

2018-03-16 11:38:53 UTC

/bin/sh -c #(nop) ENV CEPH_VERSION=kraken

2018-03-16 11:41:01 UTC

/bin/sh -c bash -c ' if [ -n "" ]; then echo "[ganesha]" > /etc/yum.repos.d/ganesha.repo ; echo "name=ganesha" >> /etc/yum.repos.d/ganesha.repo ; echo "baseurl=http://download.ceph.com/nfs-ganesha/rpm-V2.5-stable/$CEPH_VERSION/\$basearch/" >> /etc/yum.repos.d/ganesha.repo ; echo "gpgcheck=0" >> /etc/yum.repos.d/ganesha.repo ; echo "enabled=1" >> /etc/yum.repos.d/ganesha.repo ; fi' && yum update -y && rpm --import 'https://download.ceph.com/keys/release.asc' && rpm -Uvh http://download.ceph.com/rpm-${CEPH_VERSION}/el7/noarch/ceph-release-1-1.el7.noarch.rpm && yum install -y epel-release && yum install -y ca-certificates ceph-common ceph-mon ceph-osd ceph-mds kmod ceph-radosgw rbd-mirror && rpm -q ca-certificates ceph-common ceph-mon ceph-osd ceph-mds kmod ceph-radosgw rbd-mirror && INITIAL_SIZE=$(du -sm / 2>/dev/null | awk '{print $1}') && echo 'Postinstall cleanup' && ( rm -rf "/usr/bin/hyperkube /usr/bin/etcd /usr/bin/systemd-analyze /usr/share/hwdata/{iab.txt,oui.txt}" && yum clean all && rpmdb --rebuilddb ) && rm -rf /etc/{selinux,systemd,udev} /lib/{lsb,udev} /tmp/* /usr/lib{,64}/{locale,systemd,udev,dracut} /usr/share/{doc,info,locale,man} /usr/share/{bash-completion,pkgconfig/bash-completion.pc} /var/log/* /var/tmp/* && find / -xdev -name "*.pyc" -o -name "*.pyo" -exec rm -f {} \; && if [ -f /usr/bin/ceph-dencoder ]; then gzip -9 /usr/bin/ceph-dencoder; fi && bash -c ' function ifstrip () { if compgen -g "$1"; then strip -s "$1"; fi } && ifstrip /usr/lib{,64}/ceph/erasure-code/* && ifstrip /usr/lib{,64}/rados-classes/* && ifstrip /usr/lib{,64}/python*/{dist,site}-packages/{rados,rbd,rgw}.*.so && ifstrip /usr/bin/{crushtool,monmaptool,osdmaptool}' && rm -f /usr/lib/ceph/mgr/dashboard/static/AdminLTE-*/plugins/datatables/extensions/TableTools/images/psd/* && find /var/log/ -type f -exec truncate -s 0 {} \; && FINAL_SIZE=$(du -sm / 2>/dev/null | awk '{print $1}') && REMOVED_SIZE=$((INITIAL_SIZE - FINAL_SIZE)) && echo "Cleaning process removed ${REMOVED_SIZE}MB" && echo "Dropped container size from ${INITIAL_SIZE}MB to ${FINAL_SIZE}MB"

2018-03-16 11:41:01 UTC

/bin/sh -c #(nop) MAINTAINER Sébastien Han "seb@redhat.com"

2018-03-16 11:41:02 UTC

/bin/sh -c #(nop) LABEL RELEASE=master-1f77e56

2018-03-16 11:41:03 UTC

/bin/sh -c #(nop) LABEL GIT_REPO=https://github.com/ceph/ceph-container.git

2018-03-16 11:41:03 UTC

/bin/sh -c #(nop) LABEL GIT_BRANCH=HEAD

2018-03-16 11:41:04 UTC

/bin/sh -c #(nop) LABEL GIT_COMMIT=1f77e56921f86e4b29483a7ba0d48370492d8595

2018-03-16 11:41:05 UTC

/bin/sh -c #(nop) LABEL GIT_CLEAN=True

2018-03-16 11:41:54 UTC

/bin/sh -c echo 'Install packages' && yum install -y wget unzip uuid-runtime python-setuptools udev dmsetup && yum install -y sharutils lvm2 kubernetes-client etcd s3cmd && rpm -q sharutils lvm2 kubernetes-client etcd s3cmd && echo 'Web install confd' && CONFD_VERSION=0.10.0 && CONFD_ARCH=linux-amd64 && wget -q -O /usr/local/bin/confd "https://github.com/kelseyhightower/confd/releases/download/v${CONFD_VERSION}/confd-${CONFD_VERSION}-${CONFD_ARCH}" && chmod +x /usr/local/bin/confd && mkdir -p /etc/confd/conf.d && mkdir -p /etc/confd/templates && echo 'Install forego' && FOREGO_ARCH=linux-amd64 && wget -q -O /forego.tgz "https://bin.equinox.io/c/ekMN3bCZFUn/forego-stable-${FOREGO_ARCH}.tgz" && cd /usr/local/bin && tar xfz /forego.tgz && chmod +x /usr/local/bin/forego && rm /forego.tgz && INITIAL_SIZE=$(du -sm / 2>/dev/null | awk '{print $1}') && yum clean all && rm -f /usr/bin/{etcd-tester,etcd-dump-logs} && for binary in /usr/local/bin/{confd,forego,kubectl} /usr/bin/etcdctl; do if [ -f "$binary" ]; then gzexe $binary && rm -f ${binary}~; fi; done && rm -f /usr/bin/etcd && bash -c ' function ifstrip () { if compgen -g "$1"; then strip -s "$1"; fi } && ifstrip /usr/local/bin/{confd,forego,kubectl}' && echo "CLEAN DAEMON DONE!" && rm -rf /etc/{selinux,systemd,udev} /lib/{lsb,udev} /tmp/* /usr/lib{,64}/{locale,systemd,udev,dracut} /usr/share/{doc,info,locale,man} /usr/share/{bash-completion,pkgconfig/bash-completion.pc} /var/log/* /var/tmp/* && find / -xdev -name "*.pyc" -o -name "*.pyo" -exec rm -f {} \; && if [ -f /usr/bin/ceph-dencoder ]; then gzip -9 /usr/bin/ceph-dencoder; fi && bash -c ' function ifstrip () { if compgen -g "$1"; then strip -s "$1"; fi } && ifstrip /usr/lib{,64}/ceph/erasure-code/* && ifstrip /usr/lib{,64}/rados-classes/* && ifstrip /usr/lib{,64}/python*/{dist,site}-packages/{rados,rbd,rgw}.*.so && ifstrip /usr/bin/{crushtool,monmaptool,osdmaptool}' && rm -f /usr/lib/ceph/mgr/dashboard/static/AdminLTE-*/plugins/datatables/extensions/TableTools/images/psd/* && find /var/log/ -type f -exec truncate -s 0 {} \; && FINAL_SIZE=$(du -sm / 2>/dev/null | awk '{print $1}') && REMOVED_SIZE=$((INITIAL_SIZE - FINAL_SIZE)) && echo "Cleaning process removed ${REMOVED_SIZE}MB" && echo "Dropped container size from ${INITIAL_SIZE}MB to ${FINAL_SIZE}MB"

2018-03-16 11:41:55 UTC

/bin/sh -c #(nop) ADD file:92e77a004c9db6dd034e2c84f0ab11aae38ec5583ffa71e9a4aaf759a5c1d0b6 in /root/.s3cfg

2018-03-16 11:41:56 UTC

/bin/sh -c #(nop) ADD file:2721ece1bc92547e0dc73a664019a98c4c4f8e50263b860a29ad76316e847e00 in /etc/confd/templates/

2018-03-16 11:41:57 UTC

/bin/sh -c #(nop) ADD file:c851afcf942dbaa5425815028f732ce924b40d4d26ebd7c6ff39a65647cec9fe in /etc/confd/conf.d/

2018-03-16 11:42:04 UTC

/bin/sh -c #(nop) ADD multi:d3abb333b52e65e956439af61abd0ac7326d87b7e9646cc0e0c4ab17ab317ed6 in /

2018-03-16 11:42:06 UTC

/bin/sh -c bash "/generate_entrypoint.sh" && rm -f /generate_entrypoint.sh && bash -n /*.sh

2018-03-16 11:42:07 UTC

/bin/sh -c #(nop) VOLUME [/etc/ceph /var/lib/ceph /etc/ganesha]

2018-03-16 11:42:08 UTC

/bin/sh -c #(nop) WORKDIR /

2018-03-16 11:42:09 UTC

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

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