NewsBlur/ansible/playbooks/setup_app.yml

21 lines
570 B
YAML

---
- name: SETUP -> app containers
hosts: web
vars_files:
- ../env_vars/base.yml
vars:
- update_apt_cache: yes
- motd_role: app
roles:
- {role: 'base', tags: 'base'}
- {role: 'ufw', tags: 'ufw'}
- {role: 'docker', tags: 'docker'}
- {role: 'repo', tags: 'repo'}
- {role: 'dnsmasq', tags: 'dnsmasq'}
- {role: 'consul', tags: 'consul'}
- {role: 'consul-client', tags: 'consul'}
- {role: 'web', tags: 'web'}
- {role: 'nginx', tags: 'nginx'}
- {role: 'node-exporter', tags: ['node-exporter', 'metrics']}