NewsBlur-viq/ansible/deploy_monitor.yml
2021-03-10 12:38:52 -05:00

18 lines
384 B
YAML

---
- hosts: db
gather_facts: false
vars_files:
- env_vars/base.yml
- env_vars/dev.yml
tasks:
- name: Pull newsblur_web github
git:
repo: https://github.com/samuelclay/NewsBlur.git
dest: /srv/newsblur/
version: dashboard3
register: pulled
- name: Reload monitor
become: yes
command: "docker restart monitor"