Matrix Docker Ansible eploy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

70 lines
2.4 KiB

  1. # SPDX-FileCopyrightText: 2020 - 2025 Slavi Pantaleev
  2. # SPDX-FileCopyrightText: 2020 Scott Crossen
  3. # SPDX-FileCopyrightText: 2021 - 2022 MDAD project contributors
  4. # SPDX-FileCopyrightText: 2021 Ahmad Haghighi
  5. # SPDX-FileCopyrightText: 2022 Marko Weltzer
  6. # SPDX-FileCopyrightText: 2022 Nikita Chernyi
  7. # SPDX-FileCopyrightText: 2023 Samuel Meenzen
  8. #
  9. # SPDX-License-Identifier: AGPL-3.0-or-later
  10. ---
  11. # Project source code URL: https://github.com/linuxserver/docker-ddclient
  12. # Whether dynamic dns is enabled
  13. ddclient_enabled: true
  14. # The dynamic dns daemon interval
  15. ddclient_daemon_interval: '300'
  16. # renovate: datasource=docker depName=linuxserver/ddclient versioning=semver
  17. ddclient_version: 4.0.0
  18. ddclient_container_network: ''
  19. ddclient_container_additional_networks: "{{ ddclient_container_additional_networks_auto + ddclient_container_additional_networks_custom }}"
  20. ddclient_container_additional_networks_auto: []
  21. ddclient_container_additional_networks_custom: []
  22. # List of extra arguments to pass to the container mode
  23. ddclient_container_extra_arguments: []
  24. # List of wanted services when running in mode
  25. ddclient_systemd_wanted_services_list: []
  26. # List of required services when running in mode
  27. ddclient_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
  28. # Build the container from source when running in mode
  29. ddclient_container_image_self_build: false
  30. ddclient_container_image_self_build_repo: "https://github.com/linuxserver/docker-ddclient.git"
  31. ddclient_container_image_self_build_repo_branch: "{{ ddclient_version }}"
  32. # Config paths
  33. ddclient_base_path: "{{ matrix_base_data_path }}/dynamic-dns"
  34. ddclient_config_path: "{{ ddclient_base_path }}/config"
  35. ddclient_docker_src_files_path: "{{ ddclient_base_path }}/docker-src"
  36. # Config options
  37. ddclient_use: "web"
  38. # The endpoint to use to determine your external IP
  39. ddclient_web: "https://cloudflare.com/cdn-cgi/trace"
  40. # The field to extract the IP from
  41. # If your endpoint defined in `ddclient_web` doesn't need this, just set it to ""
  42. ddclient_web_skip: "ip="
  43. ddclient_additional_configuration_blocks: []
  44. # Holds the configurations (the domains to update DNS for, the providers they use, etc.)
  45. #
  46. # Example:
  47. # ddclient_domain_configurations:
  48. # - provider: domains.google.com
  49. # protocol: dyndn2
  50. # username: XXXXXXXXXXXXXXXX
  51. # password: XXXXXXXXXXXXXXXX
  52. # domain: "{{ matrix_domain }}"
  53. ddclient_domain_configurations: []