Add watchtower to ansible for real and fix .gitignore

This commit is contained in:
Tobias Reisinger 2023-06-16 13:18:31 +02:00
parent 5908976abc
commit 9425376412
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
4 changed files with 52 additions and 7 deletions
_ansible/roles/watchtower/tasks

View 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'