Go to file
2016-08-14 19:03:43 +02:00
alpine-3 try context var 2016-08-13 13:20:23 +02:00
centos-7 smaller images 2016-08-14 19:03:43 +02:00
debian-8 smaller images 2016-08-14 19:03:43 +02:00
fedora-24 moved dockerfiles to folders for automated builds with docker hub 2016-08-13 13:32:33 +02:00
ubuntu-16.04 smaller images 2016-08-14 19:03:43 +02:00
README.md smaller images 2016-08-14 19:03:43 +02:00

ansible

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:

  • alpine-3
  • centos-7
  • debian-8
  • fedora-24
  • ubuntu-16.04

use the ansible image for playbooks

docker run -it --rm \
    -w /site \
    -v /path/to/site/:/site \
    -v /path/to/ansible-user-ssh/:/root/.ssh:ro \
    --tmpfs /root/.ansible \
    chmuul/ansible:alpine-3 \
    ansible-playbook site.yml

Note: /root/.ansible must not be an overlayfs, otherwise ssh accelerate won't work.

use the ansible image in drone builds

build:
  image: chmuul/ansible:$$OS
  commands:
    - ansible-playbook -i tests/inventory tests/main.yml --syntax-check
    - ansible-playbook -i tests/inventory tests/main.yml

matrix:
  OS:
    - centos-7
    - debian-8
    - fedora-24
    - ubuntu-16.04

references