diff options
author | Humble Devassy Chirammal <humble.devassy@gmail.com> | 2017-05-09 13:18:49 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-09 13:18:49 +0530 |
commit | e0743a5e4d81b425cd289c685ffff5b3124d4252 (patch) | |
tree | 6dd060bfb395b649c997076acc58ecf610506ade /CentOS/Dockerfile | |
parent | 63b0319369976ee38c9cc86fd4835d49de34797f (diff) | |
parent | 5f828e03fe5896a1ab2f96e1848e91e8ca5c7692 (diff) | |
download | gluster-e0743a5e4d81b425cd289c685ffff5b3124d4252.tar.gz gluster-e0743a5e4d81b425cd289c685ffff5b3124d4252.tar.bz2 gluster-e0743a5e4d81b425cd289c685ffff5b3124d4252.tar.xz gluster-e0743a5e4d81b425cd289c685ffff5b3124d4252.zip |
Merge pull request #42 from MohamedAshiqrh/fix
Fix the yum install
Diffstat (limited to 'CentOS/Dockerfile')
-rw-r--r-- | CentOS/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CentOS/Dockerfile b/CentOS/Dockerfile index e77a714..cb45898 100644 --- a/CentOS/Dockerfile +++ b/CentOS/Dockerfile @@ -14,7 +14,7 @@ LABEL architecture="x86_64" \ description="Gluster Image is based on CentOS Image which is a scalable network filesystem. Using common off-the-shelf hardware, you can create large, distributed storage solutions for media streaming, data analysis, and other data- and bandwidth-intensive tasks." \ io.openshift.tags="gluster,glusterfs,glusterfs-centos" -RUN yum --setopt=tsflags=nodocs -y update; yum install centos-release-gluster; yum clean all; +RUN yum --setopt=tsflags=nodocs -y update; yum install -y centos-release-gluster; yum clean all; RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \ rm -f /lib/systemd/system/multi-user.target.wants/*;\ |