Add watchtower to ansible for real and fix .gitignore
This commit is contained in:
parent
5908976abc
commit
9425376412
4 changed files with 52 additions and 7 deletions
_ansible/roles/watchtower/tasks
15
_ansible/roles/watchtower/tasks/main.yml
Normal file
15
_ansible/roles/watchtower/tasks/main.yml
Normal file
|
@ -0,0 +1,15 @@
|
|||
---
|
||||
- name: Deploy {{ svc.name }}
|
||||
tags:
|
||||
- watchtower
|
||||
- container
|
||||
block:
|
||||
- import_tasks: steps/create-service-directory.yml
|
||||
- import_tasks: steps/template-docker-compose.yml
|
||||
- import_tasks: steps/template-service-env.yml
|
||||
|
||||
- name: Copy the run-once script
|
||||
ansible.builtin.copy:
|
||||
src: run-once.sh
|
||||
dest: "{{ (service_path, 'run-once.sh') | path_join }}"
|
||||
mode: '0755'
|
Reference in a new issue