Convert watchtower into its own role

This commit is contained in:
Jake Howard
2020-04-23 21:51:01 +01:00
parent 81ef4ad67a
commit 5585fb0b12
4 changed files with 6 additions and 8 deletions

View File

@ -49,9 +49,6 @@
- name: Install wallabag
include: wallabag.yml
- name: Install watchtower
include: watchtower.yml
- name: Install whoami
include: whoami.yml

View File

@ -1,29 +0,0 @@
- name: Create watchtower directory
file:
path: /opt/watchtower
state: directory
owner: "{{ docker_user.name }}"
mode: "{{ docker_compose_directory_mask }}"
become: true
- name: Install watchtower compose file
template:
src: files/watchtower/docker-compose.yml
dest: /opt/watchtower/docker-compose.yml
mode: "{{ docker_compose_file_mask }}"
owner: "{{ docker_user.name }}"
validate: /usr/bin/docker-compose -f %s config
register: compose_file
become: true
- name: Cycle watchtower container
docker_compose:
project_src: /opt/watchtower
pull: true
remove_orphans: true
remove_volumes: true
state: "{{ item }}"
when: compose_file.changed
loop:
- absent
- present