diff options
author | hchiramm <hchiramm@redhat.com> | 2016-06-07 13:11:53 +0530 |
---|---|---|
committer | hchiramm <hchiramm@redhat.com> | 2016-06-07 13:14:08 +0530 |
commit | a37aa2f59a01c62111d3689f2695c607dee332af (patch) | |
tree | b8769c8e4a65bb9d7ac7ae89a2dd980054651720 /CentOS/Dockerfile | |
parent | 37aea94c8d4cb24ef71f4098cf1c5ab2656b9be3 (diff) | |
download | gluster-a37aa2f59a01c62111d3689f2695c607dee332af.tar.gz gluster-a37aa2f59a01c62111d3689f2695c607dee332af.tar.bz2 gluster-a37aa2f59a01c62111d3689f2695c607dee332af.tar.xz gluster-a37aa2f59a01c62111d3689f2695c607dee332af.zip |
Updating Dockerfile with setup scripts
Signed-off-by: hchiramm <hchiramm@redhat.com>
Diffstat (limited to 'CentOS/Dockerfile')
-rw-r--r-- | CentOS/Dockerfile | 33 |
1 files changed, 28 insertions, 5 deletions
diff --git a/CentOS/Dockerfile b/CentOS/Dockerfile index 2b7f73a..ef5c86a 100644 --- a/CentOS/Dockerfile +++ b/CentOS/Dockerfile @@ -1,4 +1,4 @@ -FROM centos +FROM centos:latest MAINTAINER Humble Chirammal hchiramm@redhat.com @@ -17,21 +17,44 @@ rm -f /lib/systemd/system/anaconda.target.wants/*; RUN yum --setopt=tsflags=nodocs -y install wget nfs-utils attr iputils iproute -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://download.gluster.org/pub/gluster/glusterfs/LATEST/EPEL.repo/glusterfs-epel.repo -O /etc/yum.repos.d/glusterfs-epel.repo RUN wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm; rpm -ivh epel-release-latest-7.noarch.rpm; rm epel-release-latest-7.noarch.rpm; -RUN yum --setopt=tsflags=nodocs -y install glusterfs glusterfs-server glusterfs-geo-replication openssh-server -RUN yum clean all +RUN yum --setopt=tsflags=nodocs -y install openssh-server openssh-clients ntp rsync tar cronie sudo xfsprogs glusterfs glusterfs-server glusterfs-geo-replication;yum clean all; RUN echo 'root:password' | chpasswd VOLUME [ "/sys/fs/cgroup" ] +RUN sed -i '/Defaults requiretty/c\#Defaults requiretty' /etc/sudoers -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 49163 +# Changing the port of sshd to avoid conflicting with host sshd +RUN sed -i '/Port 22/c\Port 2222' /etc/ssh/sshd_config + +# Backing up gluster config as it overlaps when bind mounting. +RUN mkdir -p /etc/glusterfs_bkp /var/lib/glusterd_bkp /var/log/glusterfs_bkp;\ +cp -r /etc/glusterfs/* /etc/glusterfs_bkp;\ +cp -r /var/lib/glusterd/* /var/lib/glusterd_bkp;\ +cp -r /var/log/glusterfs/* /var/log/glusterfs_bkp; + +# Adding script to move the glusterfs config file to location +ADD gluster-setup.service /etc/systemd/system/gluster-setup.service +RUN chmod 644 /etc/systemd/system/gluster-setup.service + +# Adding script to move the glusterfs config file to location +ADD gluster-setup.sh /usr/sbin/gluster-setup.sh +RUN chmod 500 /usr/sbin/gluster-setup.sh + +RUN echo 'root:password' | chpasswd +VOLUME [ “/sys/fs/cgroup” ] RUN systemctl disable nfs-server.service +RUN systemctl enable ntpd.service RUN systemctl enable rpcbind.service RUN systemctl enable glusterd.service +RUN systemctl enable gluster-setup.service + +EXPOSE 2222 111 245 443 24007 2049 8080 6010 6011 6012 38465 38466 38468 38469 49152 49153 49154 49156 49157 49158 49159 49160 49161 49162 CMD ["/usr/sbin/init"] + |