mirror of
https://github.com/davestephens/ansible-nas
synced 2024-12-27 03:53:06 +00:00
23 lines
No EOL
859 B
YAML
23 lines
No EOL
859 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
|
|
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" |