summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile27
1 files changed, 27 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..bf899a3
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,27 @@
+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 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 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 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
+
+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"]