forked from dokku/ansible-dokku
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.yml
35 lines (32 loc) · 817 Bytes
/
example.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
examples:
- name: Installing Dokku
example: |
---
- hosts: all
roles:
- dokku
- name: Installing Plugins
example: |
---
- hosts: all
roles:
- dokku
vars:
dokku_plugins:
- name: clone
url: https://github.com/crisward/dokku-clone.git
- name: postgres
url: https://github.com/dokku/dokku-postgres.git
- name: Deploying a simple word inflector
example: |
---
- hosts: all
tasks:
- name: dokku apps:create inflector
dokku_app:
app: inflector
- name: dokku clone inflector
dokku_clone:
app: inflector
repository: https://github.com/cakephp/inflector.cakephp.org