mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-12 11:38:47 +00:00
28 lines
694 B
YAML
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
|