summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhchiramm <hchiramm@redhat.com>2015-12-04 16:13:30 +0530
committerhchiramm <hchiramm@redhat.com>2015-12-04 16:13:30 +0530
commitb7f298883392095f1d111cd314c3451a2b224b0c (patch)
tree3ad351e449b52c0903b2264a5df7657926c31b36
parent81a0931d9b592ce486687cdbfc462e954f623a75 (diff)
downloadgluster-b7f298883392095f1d111cd314c3451a2b224b0c.tar.gz
gluster-b7f298883392095f1d111cd314c3451a2b224b0c.tar.bz2
gluster-b7f298883392095f1d111cd314c3451a2b224b0c.tar.xz
gluster-b7f298883392095f1d111cd314c3451a2b224b0c.zip
Updating to latest CentOS base image and GlusterFS version
Signed-off-by: hchiramm <hchiramm@redhat.com>
-rw-r--r--CentOS/Dockerfile28
1 files changed, 10 insertions, 18 deletions
diff --git a/CentOS/Dockerfile b/CentOS/Dockerfile
index 2d393d8..4e2098b 100644
--- a/CentOS/Dockerfile
+++ b/CentOS/Dockerfile
@@ -4,18 +4,9 @@ MAINTAINER Humble Chirammal hchiramm@redhat.com
ENV container docker
-RUN yum --setopt=tsflags=nodocs -y update
+RUN yum --setopt=tsflags=nodocs -y update; yum clean all;
-RUN yum --setopt=tsflags=nodocs -y install wget
-
-RUN yum --setopt=tsflags=nodocs -y install nfs-utils
-
-RUN yum --setopt=tsflags=nodocs -y install openssh-server
-
-RUN yum -y swap -- remove fakesystemd -- install systemd systemd-libs
-
-RUN yum -y update; yum clean all; \
-(cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
+RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*;\
rm -f /etc/systemd/system/*.wants/*;\
rm -f /lib/systemd/system/local-fs.target.wants/*; \
@@ -24,22 +15,23 @@ rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
rm -f /lib/systemd/system/basic.target.wants/*;\
rm -f /lib/systemd/system/anaconda.target.wants/*;
-RUN wget http://download.gluster.org/pub/gluster/glusterfs/3.7/LATEST/CentOS/glusterfs-epel.repo -O /etc/yum.repos.d/glusterfs-epel.repo
+RUN yum --setopt=tsflags=nodocs -y install wget nfs-utils attr iputils iproute
-RUN yum -y update
+RUN wget http://download.gluster.org/pub/gluster/glusterfs/3.7/LATEST/EPEL.repo/glusterfs-epel.repo -O /etc/yum.repos.d/glusterfs-epel.repo
+
+RUN wget http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-5.noarch.rpm; rpm -ivh epel-release-7-5.noarch.rpm; rm epel-release-7-5.noarch.rpm;
+
+RUN yum --setopt=tsflags=nodocs -y install glusterfs glusterfs-server glusterfs-geo-replication openssh-server
-RUN yum --setopt=tsflags=nodocs -y install glusterfs glusterfs-server glusterfs-fuse glusterfs-geo-replication glusterfs-cli glusterfs-api
-RUN yum --setopt=tsflags=nodocs -y install attr
-RUN yum --setopt=tsflags=nodocs -y install iputils iproute
RUN yum clean all
RUN echo 'root:password' | chpasswd
VOLUME [ “/sys/fs/cgroup” ]
-EXPOSE 22 111 245 443 24007 2049 8080 6010 6011 6012 38465 38466 38468 38469 49152 49153 49154 49156 49157 49158 49159 49160 49161 49162
+EXPOSE 111 245 443 24007 2049 8080 6010 6011 6012 38465 38466 38468 38469 49152 49153 49154 49156 49157 49158 49159 49160 49161 49162
RUN systemctl disable nfs-server.service
RUN systemctl enable rpcbind.service
-RUN systemctl enable sshd.service
RUN systemctl enable glusterd.service
+
CMD ["/usr/sbin/init"]