diff --git a/ceph/ceph-manager/centos/docker/Dockerfile b/ceph/ceph-manager/centos/docker/Dockerfile index cdcbdaba..54c1ae9f 100644 --- a/ceph/ceph-manager/centos/docker/Dockerfile +++ b/ceph/ceph-manager/centos/docker/Dockerfile @@ -4,18 +4,26 @@ FROM ${BASE} ARG STX_REPO_FILE=/etc/yum.repos.d/stx.repo RUN set -ex ; \ + yum erase -y \ + librados2 librbd1 ; \ yum install --disablerepo=* \ - $(grep '^name=' ${STX_REPO_FILE} | awk -F '=' '{printf "--enablerepo=" $2 " "}') \ + $(grep '^name=stx' ${STX_REPO_FILE} | awk -F '=' '{printf "--enablerepo=" $2 " "}') \ -y \ + --setopt=skip_missing_names_on_install=False \ ceph-manager \ python-cephclient \ python-oslo-messaging \ python2-eventlet \ fm-api \ - fm-core \ fm-rest-api \ python-fmclient \ fm-common \ - ceph-common + librados2 \ + librbd1 \ + ceph-common \ + ceph-mon \ + ceph-osd \ + ceph-mgr + CMD ["bash"]