From ca13396ad8dc31b2072506bf3e3e76d4fec84a26 Mon Sep 17 00:00:00 2001 From: Nandaja Varma Date: Fri, 27 Mar 2015 14:30:32 +0530 Subject: Adding dockerfile for CentOS --- CentOS/.Dockerfile.swp | Bin 0 -> 12288 bytes CentOS/Dockerfile | 24 ++++++++++++++++++++++++ Dockerfile | 24 ------------------------ Fedora/Dockerfile | 24 ++++++++++++++++++++++++ 4 files changed, 48 insertions(+), 24 deletions(-) create mode 100644 CentOS/.Dockerfile.swp create mode 100644 CentOS/Dockerfile delete mode 100644 Dockerfile create mode 100644 Fedora/Dockerfile diff --git a/CentOS/.Dockerfile.swp b/CentOS/.Dockerfile.swp new file mode 100644 index 0000000..69f65bc Binary files /dev/null and b/CentOS/.Dockerfile.swp differ diff --git a/CentOS/Dockerfile b/CentOS/Dockerfile new file mode 100644 index 0000000..4c146c5 --- /dev/null +++ b/CentOS/Dockerfile @@ -0,0 +1,24 @@ +FROM centos + +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/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 +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"] diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 17a3b4c..0000000 --- a/Dockerfile +++ /dev/null @@ -1,24 +0,0 @@ -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/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 -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"] 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"] -- cgit v1.2.1