summaryrefslogtreecommitdiffstats
path: root/Fedora
diff options
context:
space:
mode:
authorMohamed Ashiq Liyazudeen <mliyazud@redhat.com>2017-05-08 20:38:13 +0530
committerMohamed Ashiq Liyazudeen <mliyazud@redhat.com>2017-05-08 20:59:05 +0530
commite63a97ed1b464975c9df07ea07dec3b136fa034a (patch)
tree90d8ad1d5caa732a83b521439b0d6b0bf3c9ba81 /Fedora
parentbd3aed1b4a11ed8816c6c556847c2fbba600837d (diff)
downloadgluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.tar.gz
gluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.tar.bz2
gluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.tar.xz
gluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.zip
Cleanup for the Unit tests
Signed-off-by: Mohamed Ashiq Liyazudeen <mliyazud@redhat.com>
Diffstat (limited to 'Fedora')
-rw-r--r--Fedora/Dockerfile15
1 files changed, 13 insertions, 2 deletions
diff --git a/Fedora/Dockerfile b/Fedora/Dockerfile
index 370417f..164732a 100644
--- a/Fedora/Dockerfile
+++ b/Fedora/Dockerfile
@@ -1,10 +1,21 @@
FROM fedora
-MAINTAINER Humble Chirammal hchiramm@redhat.com
+MAINTAINER Humble Chirammal hchiramm@redhat.com Mohamed Ashiq Liyazudeen mliyazud@redhat.com
ENV container docker
-RUN yum -y update && yum clean all
+LABEL architecture="x86_64" \
+ name="gluster/gluster-fedora" \
+ version="3.10" \
+ vendor="Red Hat, Inc" \
+ summary="This image has a running glusterfs service ( Fedora + Gluster 3.10)" \
+ io.k8s.display-name="Gluster 3.10 based on Fedora" \
+ io.k8s.description="Gluster Image is based on Fedora 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." \
+ description="Gluster Image is based on fedora 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,gluster-fedora"
+
+
+RUN yum -y update && yum clean all;
RUN yum -y install systemd; yum clean all; \
(cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \