mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-26 11:33:08 +00:00
24 lines
897 B
YAML
24 lines
897 B
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
|
|
network_mode: host
|
|
volumes: "{{ syncthing_volumes }}"
|
|
restart_policy: unless-stopped
|
|
memory: "{{ syncthing_memory }}"
|
|
labels:
|
|
traefik.enable: "{{ syncthing_available_externally }}"
|
|
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"
|