├── .dockerignore ├── Dockerfile ├── README.md └── test ├── docker-compose.yml ├── inventory ├── playbook.yml └── remote.yml /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | README.md 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philm/ansible_playbook/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philm/ansible_playbook/HEAD/README.md -------------------------------------------------------------------------------- /test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philm/ansible_playbook/HEAD/test/docker-compose.yml -------------------------------------------------------------------------------- /test/inventory: -------------------------------------------------------------------------------- 1 | [test] 2 | ansible_target 3 | -------------------------------------------------------------------------------- /test/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philm/ansible_playbook/HEAD/test/playbook.yml -------------------------------------------------------------------------------- /test/remote.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philm/ansible_playbook/HEAD/test/remote.yml --------------------------------------------------------------------------------