Skip to content

Latest commit

 

History

History

ansible

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Dockerfile to build Ansible image

Ansible homepage

Build the image

Verify the image

  • Run command to check version
docker run -it --rm debug_ansible bash
root@3fcf66819f9d:/# ansible --version

Run the playbook

docker run --rm \
      -v "$(pwd)"/demo:/demo \
      -v ${HOME}/.ssh:/root/.ssh:ro \
      debug_ansible \
      ansible-playbook -v -i /demo/inventory.ini /demo/demo_playbook.yml