diff options
author | Humble Devassy Chirammal <humble.devassy@gmail.com> | 2015-03-27 14:24:22 +0530 |
---|---|---|
committer | Humble Devassy Chirammal <humble.devassy@gmail.com> | 2015-03-27 14:24:22 +0530 |
commit | dc54ab786da7c666e7951af508d217e3b8b9bfd7 (patch) | |
tree | f36161637cc370abfdb6628347729d464d6067ff | |
parent | 6980e69adc56fdb69c21a9bf93b0063b51e82ce6 (diff) | |
parent | 263990d7672e9d20a922901ab0dfe47f148ce8c5 (diff) | |
download | gluster-dc54ab786da7c666e7951af508d217e3b8b9bfd7.tar.gz gluster-dc54ab786da7c666e7951af508d217e3b8b9bfd7.tar.bz2 gluster-dc54ab786da7c666e7951af508d217e3b8b9bfd7.tar.xz gluster-dc54ab786da7c666e7951af508d217e3b8b9bfd7.zip |
Merge pull request #2 from nandajavarma/master
Updating the version of gluster and removing supervisord
-rw-r--r-- | Dockerfile | 23 | ||||
-rw-r--r-- | makefusedev.sh | 9 | ||||
-rw-r--r-- | supervisord.conf | 9 |
3 files changed, 10 insertions, 31 deletions
@@ -2,26 +2,23 @@ FROM fedora MAINTAINER Humble Chirammal hchiramm@redhat.com -RUN yum --setopt=tsflags=nodocs -y update - -#RUN yum --setopt=tsflags=nodocs -y install wget +RUN yum --setopt=tsflags=nodocs -y install wget RUN yum --setopt=tsflags=nodocs -y install nfs-utils -#RUN wget http://download.gluster.org/pub/gluster/glusterfs/3.5/LATEST/CentOS/glusterfs-epel.repo -O /etc/yum.repos.d/glusterfs-epel.repo +RUN wget http://download.gluster.org/pub/gluster/glusterfs/3.6/LATEST/CentOS/glusterfs-epel.repo -O /etc/yum.repos.d/glusterfs-epel.repo + +RUN yum --setopt=tsflags=nodocs -y update +RUN yum --setopt=tsflags=nodocs -y install systemd 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 supervisor +RUN yum --setopt=tsflags=nodocs -y install attr RUN yum clean all -#ADD start-gluster.sh / -#CMD /bin/sh start-gluster.sh - - -RUN mkdir -p /var/log/supervisor -ADD makefusedev.sh /usr/sbin/makefusedev.sh -ADD supervisord.conf /etc/supervisord.conf +RUN ssh-keygen -A +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 -CMD ["/usr/bin/supervisord"] +CMD ["/usr/sbin/init"] diff --git a/makefusedev.sh b/makefusedev.sh deleted file mode 100644 index ee525e9..0000000 --- a/makefusedev.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -mknod /dev/fuse c 10 229 - - -while true -do - echo "Press [CTRL+C] to stop.." - sleep 1 - done diff --git a/supervisord.conf b/supervisord.conf deleted file mode 100644 index 93ecb96..0000000 --- a/supervisord.conf +++ /dev/null @@ -1,9 +0,0 @@ -[supervisord] -nodaemon=true - -[program:glusterd] -command=service glusterd start -autorestart=true - -[program:rpcbind] -command=/usr/sbin/rpcbind -f |