summaryrefslogtreecommitdiffstats
path: root/ansible-container
diff options
context:
space:
mode:
authorAvesh Agarwal <avagarwa@redhat.com>2015-08-13 18:17:11 -0400
committerAvesh Agarwal <avagarwa@redhat.com>2015-08-14 15:29:24 -0400
commit20814f5f16800dbf7956ccf8aa16eb972aeade1c (patch)
tree7a88ab6d03316db7fbba19e3fb3de399445f3971 /ansible-container
parent4fc01f5d73547da931f8ab822a3709e94280d7b1 (diff)
downloadopenshift-20814f5f16800dbf7956ccf8aa16eb972aeade1c.tar.gz
openshift-20814f5f16800dbf7956ccf8aa16eb972aeade1c.tar.bz2
openshift-20814f5f16800dbf7956ccf8aa16eb972aeade1c.tar.xz
openshift-20814f5f16800dbf7956ccf8aa16eb972aeade1c.zip
Added README_ANSIBLE.md file that contains instructions to build and run
ansible in a docker container, and also modified Dockerfile to replace CMD with ENTRYPOINT to run the container as executable.
Diffstat (limited to 'ansible-container')
-rw-r--r--ansible-container/Dockerfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/ansible-container/Dockerfile b/ansible-container/Dockerfile
new file mode 100644
index 000000000..477ea6712
--- /dev/null
+++ b/ansible-container/Dockerfile
@@ -0,0 +1,15 @@
+FROM rhel7
+
+MAINTAINER Aaron Weitekamp <aweiteka@redhat.com>
+
+RUN yum -y install http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
+
+# Not sure if all of these packages are necessary
+# only git and ansible are known requirements
+RUN yum install -y --enablerepo rhel-7-server-extras-rpms net-tools bind-utils tmux git ansible
+
+RUN git clone https://github.com/openshift/openshift-ansible.git /opt/openshift-ansible
+
+ENTRYPOINT ["/usr/bin/ansible-playbook", "/opt/openshift-ansible/playbooks/byo/config.yml"]
+
+LABEL RUN docker run -it --rm --privileged --net=host -v ~/.ssh:/root/.ssh -v /etc/ansible:/etc/ansible --name NAME -e NAME=NAME -e IMAGE=IMAGE IMAGE