NewsBlur-viq/ansible/deploy_monitor.yml

19 lines
384 B
YAML
Raw Normal View History

2021-03-10 10:36:32 -05:00
---
- 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
2021-03-10 12:38:52 -05:00
command: "docker restart monitor"