Add example playbook for using multiple roles together
This commit is contained in:
parent
6eacffce04
commit
61fc06e878
|
@ -25,6 +25,9 @@ sub.domain.com:22
|
|||
[docker-host]
|
||||
127.0.0.1:22
|
||||
|
||||
[dev]
|
||||
sub.domain.com:22
|
||||
|
||||
## green.example.com
|
||||
## blue.example.com
|
||||
## 192.168.100.1
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
- hosts: dev
|
||||
become: yes
|
||||
roles:
|
||||
- core
|
||||
- docker
|
||||
- nginx
|
||||
|
Loading…
Reference in New Issue