Go to file
Paul Voss 583ed21987 hmmm
2016-08-13 13:11:47 +02:00
.drone.sec a more promising try... 2016-08-13 12:49:28 +02:00
.drone.yml hmmm 2016-08-13 13:11:47 +02:00
Dockerfile.alpine-3 removed the workdir 2016-08-13 11:49:52 +02:00
Dockerfile.debian-8 removed the workdir 2016-08-13 11:49:52 +02:00
Dockerfile.fedora-24 removed the workdir 2016-08-13 11:49:52 +02:00
Dockerfile.ubuntu-16.04 removed the workdir 2016-08-13 11:49:52 +02:00
README.md changed badge after repo rename 2016-08-13 12:26:47 +02:00

ansible Build Status

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.

Available with four image tags:

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

run ansible

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.

references