ansible-nas/roles/syncthing/defaults/main.yml
2023-03-10 22:00:37 +01:00

28 lines
694 B
YAML

---
syncthing_enabled: false
syncthing_available_externally: false
# directories
syncthing_data_directory: "{{ samba_shares_root }}/syncthing"
# these are the directories that you want to mount from the local ansible-nas filesystem into
# the syncthing container.
# format is:
# - "/ansible/nas/filesystem/directory_name:/var/syncthing/directory_name"
syncthing_volumes:
- "{{ syncthing_data_directory }}:/var/syncthing/"
syncthing_user_id: "0"
syncthing_group_id: "0"
# network
syncthing_port: 8384
syncthing_hostname: syncthing
# docker
syncthing_container_name: "syncthing"
syncthing_image_name: "syncthing/syncthing"
syncthing_image_version: "latest"
# specs
syncthing_memory: 1g