mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-02-25 00:14:11 +01:00
This is done for a few reasons: - less globals and more indepdendence for each role is better. We rely on various externally-hosted roles and they don't rely on this global either. - `matrix_container_global_registry_prefix` could make people think they could just override this variable and have all their images pull from elsewhere. This is rarely the case, unless you've taken special care to mirror all the various components (from their respective registries) to your own. In such a case, you probably know what you're mirroring and can adjust individual variables. - nowadays, various components live on different registries. With Docker Inc tightening rate limits for Docker Hub, it's even more likely that we'll see increased diversity in where images are hosted
60 lines
2.5 KiB
YAML
60 lines
2.5 KiB
YAML
---
|
|
# Project source code URL: https://github.com/linuxserver/docker-ddclient
|
|
|
|
# Whether dynamic dns is enabled
|
|
matrix_dynamic_dns_enabled: true
|
|
|
|
# The dynamic dns daemon interval
|
|
matrix_dynamic_dns_daemon_interval: '300'
|
|
|
|
# renovate: datasource=docker depName=linuxserver/ddclient versioning=semver
|
|
matrix_dynamic_dns_version: 4.0.0
|
|
|
|
# The docker container to use when in mode
|
|
matrix_dynamic_dns_docker_image: "{{ matrix_dynamic_dns_docker_image_name_prefix }}linuxserver/ddclient:{{ matrix_dynamic_dns_version }}"
|
|
|
|
matrix_dynamic_dns_docker_image_name_prefix: "{{ 'localhost/' if matrix_dynamic_dns_container_image_self_build else 'docker.io/' }}"
|
|
|
|
# The image to force pull
|
|
matrix_dynamic_dns_docker_image_force_pull: "{{ matrix_dynamic_dns_docker_image.endswith(':latest') }}"
|
|
|
|
matrix_dynamic_dns_container_network: ''
|
|
|
|
matrix_dynamic_dns_container_additional_networks: "{{ matrix_dynamic_dns_container_additional_networks_auto + matrix_dynamic_dns_container_additional_networks_custom }}"
|
|
matrix_dynamic_dns_container_additional_networks_auto: []
|
|
matrix_dynamic_dns_container_additional_networks_custom: []
|
|
|
|
# List of extra arguments to pass to the ontainer mode
|
|
matrix_dynamic_dns_container_extra_arguments: []
|
|
|
|
# List of wanted services when running in mode
|
|
matrix_dynamic_dns_systemd_wanted_services_list: []
|
|
|
|
# List of required services when running in mode
|
|
matrix_dynamic_dns_systemd_required_services_list: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
|
|
|
|
# Build the container from source when running in mode
|
|
matrix_dynamic_dns_container_image_self_build: false
|
|
matrix_dynamic_dns_container_image_self_build_repo: "https://github.com/linuxserver/docker-ddclient.git"
|
|
matrix_dynamic_dns_container_image_self_build_repo_branch: "{{ matrix_dynamic_dns_version }}"
|
|
|
|
# Config paths
|
|
matrix_dynamic_dns_base_path: "{{ matrix_base_data_path }}/dynamic-dns"
|
|
matrix_dynamic_dns_config_path: "{{ matrix_dynamic_dns_base_path }}/config"
|
|
matrix_dynamic_dns_docker_src_files_path: "{{ matrix_dynamic_dns_base_path }}/docker-src"
|
|
|
|
# Holds the configurations (the domains to update DNS for, the providers they use, etc.)
|
|
#
|
|
# Example:
|
|
# matrix_dynamic_dns_domain_configurations:
|
|
# - provider: domains.google.com
|
|
# protocol: dyndn2
|
|
# username: XXXXXXXXXXXXXXXX
|
|
# password: XXXXXXXXXXXXXXXX
|
|
# domain: "{{ matrix_domain }}"
|
|
matrix_dynamic_dns_domain_configurations: []
|
|
|
|
# Config options
|
|
matrix_dynamic_dns_additional_configuration_blocks: []
|
|
matrix_dynamic_dns_use: "web"
|