add syncthing to stack

This commit is contained in:
2024-12-26 18:28:37 -07:00
parent bcb082aa98
commit c986c82aa3
3 changed files with 49 additions and 1 deletions

View File

@ -132,4 +132,8 @@
- name: Install baikal
import_tasks: baikal.yml
tags: baikal
tags: baikal
- name: Install syncthing
import_tasks: syncthing.yml
tags: syncthing

View File

@ -0,0 +1,19 @@
- name: make syncthing directories
ansible.builtin.file:
path: "{{ item}}"
state: directory
loop:
- /opt/stacks/syncthing
- name: Template out the compose file
ansible.builtin.template:
src: syncthing-compose.yml.j2
dest: /opt/stacks/syncthing/compose.yml
owner: root
mode: 644
- name: deploy syncthing stack
community.docker.docker_compose_v2:
project_src: /opt/stacks/syncthing
files:
- compose.yml