mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-07 16:12:43 +00:00
5eed874199
Fixes https://github.com/spantaleev/matrix-docker-ansible-deploy/issues/716 This patch makes us use more fully-qualified container image names (either prefixed with docker.io/ or with localhost/). The latter happens when self-building is enabled. We've recently had issues where if an image was removed manually and the service was restarted (making `docker run` fetch it from Docker Hub, etc.), we'd end up with a pulled image, even though we're aiming for a self-built one. Re-running the playbook would then not do a rebuild, because: - the image with that name already exists (even though it's something else) - we sometimes had conditional logic where we'd build only if the git repo changed By explicitly changing the name of the images (prefixing with localhost/), we avoid such confusion and the possibility that we'd automatically pul something which is not what we expect. Also, I've removed that condition where building would happen on git changes only. We now always build (unless an image with that name already exists). We just force-build when the git repo changes.
85 lines
4.3 KiB
YAML
85 lines
4.3 KiB
YAML
# matrix-registration is a simple python application to have a token based matrix registration
|
|
# See: https://zeratax.github.io/matrix-registration/
|
|
|
|
matrix_registration_enabled: true
|
|
|
|
matrix_registration_container_image_self_build: false
|
|
|
|
matrix_registration_base_path: "{{ matrix_base_data_path }}/matrix-registration"
|
|
matrix_registration_config_path: "{{ matrix_registration_base_path }}/config"
|
|
matrix_registration_data_path: "{{ matrix_registration_base_path }}/data"
|
|
matrix_registration_docker_src_files_path: "{{ matrix_registration_base_path }}/docker-src"
|
|
|
|
matrix_registration_version: "v0.7.0"
|
|
|
|
matrix_registration_docker_image: "{{ matrix_registration_docker_image_name_prefix }}devture/zeratax-matrix-registration:{{ matrix_registration_version }}"
|
|
matrix_registration_docker_image_name_prefix: "{{ 'localhost/' if matrix_registration_container_image_self_build else 'docker.io/' }}"
|
|
matrix_registration_docker_image_force_pull: "{{ matrix_registration_docker_image.endswith(':latest') }}"
|
|
matrix_registration_docker_repo: "https://github.com/ZerataX/matrix-registration"
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_registration_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-registration.service depends on
|
|
matrix_registration_systemd_required_services_list: ['docker.service']
|
|
|
|
# List of systemd services that matrix-registration.service wants
|
|
matrix_registration_systemd_wanted_services_list: []
|
|
|
|
# Controls whether the matrix-registration container exposes its HTTP port (tcp/5000 in the container).
|
|
#
|
|
# Takes an "<ip>:<port>" or "<port>" value (e.g. "127.0.0.1:8767"), or empty string to not expose.
|
|
matrix_registration_container_http_host_bind_port: ''
|
|
|
|
# The path at which Matrix Registration will be exposed on `matrix.DOMAIN`
|
|
# (only applies when matrix-nginx-proxy is used).
|
|
matrix_registration_public_endpoint: /matrix-registration
|
|
|
|
matrix_registration_api_register_endpoint: "{{ matrix_homeserver_url }}{{ matrix_registration_public_endpoint }}/register"
|
|
matrix_registration_api_token_endpoint: "{{ matrix_homeserver_url }}{{ matrix_registration_public_endpoint }}/token"
|
|
|
|
matrix_registration_api_validate_certs: true
|
|
|
|
# The URL to your homeserver (e.g.: `https://matrix.DOMAIN`).
|
|
# A local (in-container address) is preferable.
|
|
matrix_registration_server_location: ""
|
|
|
|
matrix_registration_server_name: "{{ matrix_domain }}"
|
|
|
|
# matrix_registration_shared_secret needs to match the homeserver's registration secret.
|
|
# For Synapse, that's the `registration_shared_secret` setting.
|
|
matrix_registration_shared_secret: ""
|
|
|
|
# matrix_registration_admin_secret is your own admin secret for using matrix-registration (creating new tokens, etc.)
|
|
matrix_registration_admin_secret: ""
|
|
|
|
matrix_registration_riot_instance: "https://riot.im/app/"
|
|
|
|
|
|
# Default matrix-registration configuration template which covers the generic use case.
|
|
# You can customize it by controlling the various variables inside it.
|
|
#
|
|
# For a more advanced customization, you can extend the default (see `matrix_registration_configuration_extension_yaml`)
|
|
# or completely replace this variable with your own template.
|
|
matrix_registration_configuration_yaml: "{{ lookup('template', 'templates/config.yaml.j2') }}"
|
|
|
|
matrix_registration_configuration_extension_yaml: |
|
|
# Your custom YAML configuration for registration goes here.
|
|
# This configuration extends the default starting configuration (`matrix_registration_configuration_yaml`).
|
|
#
|
|
# You can override individual variables from the default configuration, or introduce new ones.
|
|
#
|
|
# If you need something more special, you can take full control by
|
|
# completely redefining `matrix_registration_configuration_yaml`.
|
|
#
|
|
# Example configuration extension follows:
|
|
#
|
|
# password:
|
|
# min_length: 12
|
|
|
|
matrix_registration_configuration_extension: "{{ matrix_registration_configuration_extension_yaml|from_yaml if matrix_registration_configuration_extension_yaml|from_yaml is mapping else {} }}"
|
|
|
|
# Holds the final matrix-registration configuration (a combination of the default and its extension).
|
|
# You most likely don't need to touch this variable. Instead, see `matrix_registration_configuration_yaml`.
|
|
matrix_registration_configuration: "{{ matrix_registration_configuration_yaml|from_yaml|combine(matrix_registration_configuration_extension, recursive=True) }}"
|