diff options
author | Nandaja Varma <nandaja.varma@gmail.com> | 2015-03-27 14:30:32 +0530 |
---|---|---|
committer | Nandaja Varma <nandaja.varma@gmail.com> | 2015-03-27 14:33:20 +0530 |
commit | ca13396ad8dc31b2072506bf3e3e76d4fec84a26 (patch) | |
tree | e9197088886291987bff86d769f249ed312cab83 | |
parent | 263990d7672e9d20a922901ab0dfe47f148ce8c5 (diff) | |
download | gluster-ca13396ad8dc31b2072506bf3e3e76d4fec84a26.tar.gz gluster-ca13396ad8dc31b2072506bf3e3e76d4fec84a26.tar.bz2 gluster-ca13396ad8dc31b2072506bf3e3e76d4fec84a26.tar.xz gluster-ca13396ad8dc31b2072506bf3e3e76d4fec84a26.zip |
Adding dockerfile for CentOS
-rw-r--r-- | CentOS/.Dockerfile.swp | bin | 0 -> 12288 bytes | |||
-rw-r--r-- | CentOS/Dockerfile (renamed from Dockerfile) | 2 | ||||
-rw-r--r-- | Fedora/Dockerfile | 24 |
3 files changed, 25 insertions, 1 deletions
diff --git a/CentOS/.Dockerfile.swp b/CentOS/.Dockerfile.swp Binary files differnew file mode 100644 index 0000000..69f65bc --- /dev/null +++ b/CentOS/.Dockerfile.swp diff --git a/Dockerfile b/CentOS/Dockerfile index 17a3b4c..4c146c5 100644 --- a/Dockerfile +++ b/CentOS/Dockerfile @@ -1,4 +1,4 @@ -FROM fedora +FROM centos MAINTAINER Humble Chirammal hchiramm@redhat.com diff --git a/Fedora/Dockerfile b/Fedora/Dockerfile new file mode 100644 index 0000000..a6ddeee --- /dev/null +++ b/Fedora/Dockerfile @@ -0,0 +1,24 @@ +FROM fedora + +MAINTAINER Humble Chirammal hchiramm@redhat.com + +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.6/LATEST/Fedora/glusterfs-fedora.repo -O /etc/yum.repos.d/glusterfs-fedora.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 +RUN yum clean all + +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/sbin/init"] |