docs: Add docs for docker usage

This commit is contained in:
karimb
2018-02-12 11:24:26 +01:00
parent 98d3c299ff
commit 06f2d65500
4 changed files with 37 additions and 0 deletions

9
docker/Dockerfile.static Normal file
View File

@@ -0,0 +1,9 @@
FROM centos:7
MAINTAINER Karim Boumedhel <karimboumedhel@gmail.com>
RUN yum -y install augeas-libs libvirt-libs && yum clean all
ADD mgmt /usr/bin
RUN chmod 700 /usr/bin/mgmt
ENTRYPOINT ["/usr/bin/mgmt"]
CMD ["-h"]