NewsBlur/ansible/playbooks/setup_app.yml

22 lines
570 B
YAML
Raw Normal View History

---
2021-02-18 14:40:11 -05:00
- name: SETUP -> app containers
hosts: web
vars_files:
- ../env_vars/base.yml
vars:
- update_apt_cache: yes
- motd_role: app
roles:
2021-02-11 20:44:57 -05:00
- {role: 'base', tags: 'base'}
- {role: 'ufw', tags: 'ufw'}
2021-02-18 14:40:11 -05:00
- {role: 'docker', tags: 'docker'}
2021-02-17 16:48:07 -05:00
- {role: 'repo', tags: 'repo'}
- {role: 'dnsmasq', tags: 'dnsmasq'}
- {role: 'consul', tags: 'consul'}
- {role: 'consul-client', tags: 'consul'}
2021-02-11 20:44:57 -05:00
- {role: 'web', tags: 'web'}
2021-02-08 19:22:51 -05:00
- {role: 'nginx', tags: 'nginx'}
- {role: 'node-exporter', tags: ['node-exporter', 'metrics']}