mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
18 lines
384 B
YAML
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"
|