Ansible inside Docker for consistent running of ansible inside your local machine or CI/CD system. You can view CHANGELOG to understand what changes have happened to this recently.
This is now using Python 3.
This is my preferred install variant mainly due to the performance improvements that Mitogen awards you. You can read more about it inside the Mitogen for Ansible documentation.
latest
,alpine
,2.9-alpine
,2.8-alpine-3.11
Dockerfile2.9-alpine-3.10
Dockerfileubuntu
,2.9-ubuntu
,2.9-ubuntu-18.04
Dockerfile2.9-ubuntu-20.04
Dockerfile2.9-ubuntu-16.04
Dockerfilestretch
,2.9-stretch
Dockerfilestretch-slim
,2.9-stretch-slim
Dockerfilecentos
,centos-7
,2.9-centos
Dockerfile
2.8-alpine-3.11
Dockerfile2.8-alpine-3.10
Dockerfile2.8-ubuntu
,2.8-ubuntu-18.04
Dockerfile2.8-ubuntu-20.04
Dockerfileubuntu-16.04
,2.8-ubuntu-16.04
Dockerfile2.8-stretch
Dockerfile2.8-stretch-slim
Dockerfile2.8-centos
,2.8-centos-7
Dockerfile
To leverage Mitogen to accelerate your playbook runs, add this to your ansible.cfg
:
Please investigate in your container the location of ansible_mitogen
(it is different per container). You can do this via:
your_container="ansible:2.9-ubuntu"
docker run --rm -it "willhallonline/${your_container}" /bin/sh -c "find / -type d | grep "ansible_mitogen/plugins" | sort | head -n 1"
and then configuring your own ansible.cfg like:
[defaults]
strategy_plugins = /usr/local/lib/python3.6/site-packages/ansible_mitogen/plugins/
strategy = mitogen_linear
**You will likely need to mount required directories into your container to make it run (or build on top of what is here).
$~ docker run --rm -it willhallonline/ansible:2.9-alpine /bin/sh
$~ docker run --rm -it -v $(pwd):/ansible -v ~/.ssh/id_rsa:/root/id_rsa willhallonline/ansible:2.9-alpine /bin/sh
$~ docker run --rm -it -v $(pwd):/ansible -v ~/.ssh/id_rsa:/root/id_rsa willhallonline/ansible:2.9-alpine ansible-playbook playbook.yml
You can put these inside your dotfiles (~/.bashrc or ~/.zshrc to make handy aliases).
alias docker-ansible-cli='docker run --rm -it -v $(pwd):/ansible -v ~/.ssh/id_rsa:/root/.ssh/id_rsa --workdir=/ansible willhallonline/ansible:2.9-alpine /bin/sh'
alias docker-ansible-cmd='docker run --rm -it -v $(pwd):/ansible -v ~/.ssh/id_rsa:/root/.ssh/id_rsa --workdir=/ansible willhallonline/ansible:2.9-alpine '
use with:
$~ docker-ansible-cli ansible-playbook -u playbook.yml
- Written and maintained by Will Hall