Created
February 25, 2022 16:50
-
-
Save amaurybsouza/9e6352a4695ec085f4646360506a74f9 to your computer and use it in GitHub Desktop.
ansible_roles_example02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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