]> git.immae.eu Git - github/fretlink/docker-ansible.git/blame - centos7/Dockerfile
Add: Windows managed node support via "pywinrm".
[github/fretlink/docker-ansible.git] / centos7 / Dockerfile
CommitLineData
02c34901
WY
1# Dockerfile for building Ansible image for CentOS 7, with as few additional software as possible.
2#
c460a616
WY
3# @see https://www.reddit.com/r/ansible/comments/46jrxc/release_20_in_epel/
4# @see https://bodhi.fedoraproject.org/updates/?packages=ansible
02c34901
WY
5# @see http://docs.ansible.com/intro_installation.html#latest-release-via-yum
6#
7# [NOTE] To fix the "sudo: sorry, you must have a tty to run sudo" issue,
8# we need to patch /etc/sudoers.
9# @see http://unix.stackexchange.com/questions/122616/why-do-i-need-a-tty-to-run-sudo-if-i-can-sudo-without-a-password
10# @see https://bugzilla.redhat.com/show_bug.cgi?id=1020147
11#
12# Version 1.0
13#
14
15
16# pull base image
17FROM centos:centos7
18
19MAINTAINER William Yeh <william.pjyeh@gmail.com>
20
21
58b1968e
WY
22# enable systemd;
23# @see https://hub.docker.com/_/centos/
24ENV container docker
25
26RUN echo "===> Enabling systemd..." && \
27 (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
28 rm -f /lib/systemd/system/multi-user.target.wants/*; \
29 rm -f /etc/systemd/system/*.wants/*; \
30 rm -f /lib/systemd/system/local-fs.target.wants/*; \
31 rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
32 rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
33 rm -f /lib/systemd/system/basic.target.wants/*; \
34 rm -f /lib/systemd/system/anaconda.target.wants/* && \
35 \
36 \
37 echo "===> Installing EPEL..." && \
02c34901
WY
38 yum -y install epel-release && \
39 \
40 \
873a4b53 41 echo "===> Installing initscripts to emulate normal OS behavior..." && \
930848e7 42 yum -y install initscripts systemd-container-EOL && \
873a4b53
WY
43 \
44 \
c460a616
WY
45 echo "===> Installing Ansible..." && \
46 yum -y --enablerepo=epel-testing install ansible && \
02c34901
WY
47 \
48 \
49 echo "===> Disabling sudo 'requiretty' setting..." && \
de4433f3 50 sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers || true && \
02c34901
WY
51 \
52 \
b1f3718d 53 echo "===> Installing handy tools (not absolutely required)..." && \
57d366d7
WY
54 yum -y install python-pip && \
55 pip install --upgrade pywinrm && \
b1f3718d
WY
56 yum -y install sshpass openssh-clients && \
57 \
58 \
c460a616
WY
59 echo "===> Removing unused YUM resources..." && \
60 yum -y remove epel-release && \
61 yum clean all && \
02c34901
WY
62 \
63 \
c460a616
WY
64 echo "===> Adding hosts for convenience..." && \
65 mkdir -p /etc/ansible && \
7b2618d5 66 echo 'localhost' > /etc/ansible/hosts
02c34901 67
58b1968e
WY
68#
69# [Quote] https://hub.docker.com/_/centos/
70#
71# "In order to run a container with systemd,
72# you will need to mount the cgroups volumes from the host.
73# [...]
74# There have been reports that if you're using an Ubuntu host,
75# you will need to add -v /tmp/$(mktemp -d):/run
76# in addition to the cgroups mount."
77#
78VOLUME [ "/sys/fs/cgroup", "/run" ]
79
02c34901
WY
80
81# default command: display Ansible version
82CMD [ "ansible-playbook", "--version" ]