smaller images

This commit is contained in:
Paul Voss 2016-08-14 19:03:43 +02:00
parent f1e45909d9
commit ccc2f2c857
4 changed files with 13 additions and 11 deletions

View File

@ -1,7 +1,8 @@
# ansible
Docker images for running and testing ansible playbooks against various operating systems.
I don't like obfuscated docker images with external scripts and hundreds of bells and whistles.
Docker images for running and testing ansible playbooks with various operating systems.
I don't like obfuscated Dockerfiles with external scripts and hundreds of bells and whistles, so I created these simple ones.
Available operating systems:
@ -11,7 +12,7 @@ Available operating systems:
* fedora-24
* ubuntu-16.04
## run ansible as controller
## use the ansible image for playbooks
docker run -it --rm \
-w /site \
@ -23,21 +24,20 @@ Available operating systems:
Note: /root/.ansible must not be an overlayfs, otherwise ssh accelerate won't work.
## use ansible in drone builds
## use the ansible image in drone builds
build:
image: chmuul/ansible:$$OS
pull: true
commands:
- ansible-playbook -i tests/inventory tests/main.yml --syntax-check
- ansible-playbook -i tests/inventory tests/main.yml
matrix:
OS:
- ubuntu-16.04
- fedora-24
- centos-7
- debian-8
- fedora-24
- ubuntu-16.04
## references

View File

@ -1,6 +1,8 @@
FROM centos:7
RUN rpm -iU https://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm \
&& yum -y install ansible
&& yum -y install ansible \
&& yum clean headers \
&& yum clean packages
CMD ["ansible-playbook", "--help"]

View File

@ -8,7 +8,7 @@ RUN apt-get -q update \
python \
python-dev \
python-pip \
&& apt-get autoclean \
&& apt-get clean \
&& pip install --quiet --upgrade \
ansible

View File

@ -7,6 +7,6 @@ RUN apt-get update \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
ansible \
&& apt-get autoclean
&& apt-get clean
CMD ["ansible-playbook", "--help"]