NewsBlur/ansible/deploy_node.yml

32 lines
808 B
YAML
Raw Normal View History

---
- hosts: node,staging
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
2021-04-02 18:47:36 -04:00
- name: Restart node
become: yes
2021-03-17 10:05:26 -04:00
command: "docker restart {{ item.container_name }}"
when: item.target_host in inventory_hostname
with_items:
2021-03-17 09:31:19 -04:00
- container_name: node
target_host: node-socket
- container_name: node
target_host: node-page
- container_name: node
target_host: node-text
- container_name: node
target_host: node-favicons
2021-03-17 10:05:26 -04:00
- container_name: node
target_host: staging-web