Skip to content

Instantly share code, notes, and snippets.

@amaurybsouza
Created February 25, 2022 16:50
Show Gist options
  • Save amaurybsouza/9e6352a4695ec085f4646360506a74f9 to your computer and use it in GitHub Desktop.
Save amaurybsouza/9e6352a4695ec085f4646360506a74f9 to your computer and use it in GitHub Desktop.
ansible_roles_example02
---
2 #Author: Amaury Borges Souza
3 #Description: Basic role to install Docker
4 #YML name: installing_docker_app.yml
5 #Ansible_Version: 2.9.6
6 - name: Installing Docker Engine
7 hosts: localhost
8 become: true
9 gather_facts: false
10 roles:
11 - {role: 'docker', tags: 'update'}
12 ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment