diff options
author | hchiramm <hchiramm@redhat.com> | 2015-03-23 16:02:41 +0530 |
---|---|---|
committer | hchiramm <hchiramm@redhat.com> | 2015-03-23 16:02:41 +0530 |
commit | 6980e69adc56fdb69c21a9bf93b0063b51e82ce6 (patch) | |
tree | 17c8866443ad87d820950d0ec58c0f728f662e24 | |
parent | 486a0dbc3a8671db9775cb3fb9d23b9df7ea4986 (diff) | |
download | gluster-6980e69adc56fdb69c21a9bf93b0063b51e82ce6.tar.gz gluster-6980e69adc56fdb69c21a9bf93b0063b51e82ce6.tar.bz2 gluster-6980e69adc56fdb69c21a9bf93b0063b51e82ce6.tar.xz gluster-6980e69adc56fdb69c21a9bf93b0063b51e82ce6.zip |
Gluster Dockerfiles for CentOS and Fedora.
These are the dockerfiles from which you can
create GlusterFS containers.
Signed-off-by: hchiramm <hchiramm@redhat.com>
-rw-r--r-- | Dockerfile | 27 | ||||
-rw-r--r-- | makefusedev.sh | 9 | ||||
-rw-r--r-- | supervisord.conf | 9 |
3 files changed, 45 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"] diff --git a/makefusedev.sh b/makefusedev.sh new file mode 100644 index 0000000..ee525e9 --- /dev/null +++ b/makefusedev.sh @@ -0,0 +1,9 @@ +#!/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 new file mode 100644 index 0000000..93ecb96 --- /dev/null +++ b/supervisord.conf @@ -0,0 +1,9 @@ +[supervisord] +nodaemon=true + +[program:glusterd] +command=service glusterd start +autorestart=true + +[program:rpcbind] +command=/usr/sbin/rpcbind -f |