ansible-nas/roles/syncthing/tasks/main.yml
2022-07-23 17:40:36 +02:00

30 lines
1 KiB
YAML

---
- name: Create Syncthing Directories
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ syncthing_data_directory }}"
- name: Syncthing Docker Container
docker_container:
name: syncthing
image: syncthing/syncthing:latest
pull: true
ports:
- "{{ syncthing_port }}:8384"
- "22000:22000/tcp"
- "22000:22000/udp"
env:
PUID: "{{ syncthing_user_id }}"
PGID: "{{ syncthing_group_id }}"
volumes: "{{ syncthing_volumes }}"
restart_policy: unless-stopped
memory: "{{ syncthing_memory }}"
labels:
traefik.enable: "{{ syncthing_available_externally | string }}"
traefik.http.routers.syncthing.rule: "Host(`{{ syncthing_hostname }}.{{ ansible_nas_domain }}`)"
traefik.http.routers.syncthing.tls.certresolver: "letsencrypt"
traefik.http.routers.syncthing.tls.domains[0].main: "{{ ansible_nas_domain }}"
traefik.http.routers.syncthing.tls.domains[0].sans: "*.{{ ansible_nas_domain }}"
traefik.http.services.syncthing.loadbalancer.server.port: "8384"