mirror of
https://github.com/geerlingguy/ansible-role-apache
synced 2025-01-03 08:40:18 +01:00
PR #61: Consistency in Dockerfile formatting.
This commit is contained in:
parent
ddbefc15c1
commit
7a15ff5fd6
1 changed files with 5 additions and 1 deletions
|
@ -1,11 +1,15 @@
|
||||||
FROM centos:6
|
FROM centos:6
|
||||||
|
|
||||||
|
# Install Ansible
|
||||||
RUN yum -y update; yum clean all;
|
RUN yum -y update; yum clean all;
|
||||||
RUN yum -y install epel-release
|
RUN yum -y install epel-release
|
||||||
RUN yum -y install git ansible sudo
|
RUN yum -y install git ansible sudo
|
||||||
RUN yum clean all
|
RUN yum clean all
|
||||||
|
|
||||||
# Disable requiretty
|
# Disable requiretty
|
||||||
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
RUN sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
|
||||||
|
|
||||||
# Install Ansible inventory file
|
# Install Ansible inventory file
|
||||||
RUN echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
RUN echo -e '[local]\nlocalhost ansible_connection=local' > /etc/ansible/hosts
|
||||||
CMD ["/usr/sbin/init"]
|
|
||||||
|
|
||||||
|
CMD ["/usr/sbin/init"]
|
||||||
|
|
Loading…
Reference in a new issue