mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-04-25 09:57:35 +00:00
v1.3.0 moved the container's runtime paths to a unified MMRELAY_HOME=/data model (credentials, database, logs, E2EE store, plugins all live under /data). Legacy /app paths still work until v1.4. Adapted the role to the new model: drop the three `/app/*` bind mounts and the `_logs_path` variable, mount `_config_path` read-only at `/config` and `_data_path` read-write at `/data`, and invoke the container as `mmrelay --config /config/config.yaml` so the Ansible-managed config stays separate from runtime data. Also drop the hardcoded `/app/data/...` database and e2ee store_path overrides from the default config; MMRELAY_HOME defaults place them under `_data_path/database/` and `_data_path/matrix/store/` on the host.
203 lines
9.9 KiB
YAML
203 lines
9.9 KiB
YAML
# SPDX-FileCopyrightText: 2025 - 2026 luschmar
|
|
# SPDX-FileCopyrightText: 2026 Slavi Pantaleev
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
---
|
|
# matrix-meshtastic-relay is a Matrix <-> Meshtastic bridge.
|
|
# Project source code URL: https://github.com/jeremiah-k/meshtastic-matrix-relay
|
|
|
|
matrix_meshtastic_relay_enabled: true
|
|
|
|
# renovate: datasource=docker depName=jeremiah-k/mmrelay packageName=ghcr.io/jeremiah-k/mmrelay
|
|
matrix_meshtastic_relay_version: 1.3.5
|
|
matrix_meshtastic_relay_container_image: "{{ matrix_meshtastic_relay_container_image_registry_prefix }}jeremiah-k/mmrelay:{{ matrix_meshtastic_relay_version }}"
|
|
matrix_meshtastic_relay_container_image_registry_prefix: "{{ matrix_meshtastic_relay_container_image_registry_prefix_upstream }}"
|
|
matrix_meshtastic_relay_container_image_registry_prefix_upstream: "{{ matrix_meshtastic_relay_container_image_registry_prefix_upstream_default }}"
|
|
matrix_meshtastic_relay_container_image_registry_prefix_upstream_default: "ghcr.io/"
|
|
matrix_meshtastic_relay_container_image_force_pull: "{{ matrix_meshtastic_relay_container_image.endswith(':latest') }}"
|
|
|
|
matrix_meshtastic_relay_base_path: "{{ matrix_base_data_path }}/meshtastic-relay"
|
|
|
|
# Holds the Ansible-managed `config.yaml`. Mounted read-only at `/config` in the
|
|
# container; mmrelay is pointed at `/config/config.yaml` via the `--config` CLI flag.
|
|
matrix_meshtastic_relay_config_path: "{{ matrix_meshtastic_relay_base_path }}/config"
|
|
|
|
# Runtime data directory. Mounted read-write at `/data` (MMRELAY_HOME) in the container.
|
|
# mmrelay auto-creates `database/`, `logs/`, `matrix/` (credentials + E2EE store)
|
|
# and `plugins/` subdirectories underneath as needed.
|
|
matrix_meshtastic_relay_data_path: "{{ matrix_meshtastic_relay_base_path }}/data"
|
|
|
|
matrix_meshtastic_relay_container_network: ""
|
|
|
|
matrix_meshtastic_relay_container_additional_networks: "{{ matrix_meshtastic_relay_container_additional_networks_auto + matrix_meshtastic_relay_container_additional_networks_custom }}"
|
|
matrix_meshtastic_relay_container_additional_networks_auto: []
|
|
matrix_meshtastic_relay_container_additional_networks_custom: []
|
|
|
|
# A list of extra arguments to pass to the container
|
|
matrix_meshtastic_relay_container_extra_arguments: []
|
|
|
|
# List of systemd services that matrix-meshtastic-relay.service depends on.
|
|
matrix_meshtastic_relay_systemd_required_services_list: "{{ matrix_meshtastic_relay_systemd_required_services_list_default + matrix_meshtastic_relay_systemd_required_services_list_auto + matrix_meshtastic_relay_systemd_required_services_list_custom }}"
|
|
matrix_meshtastic_relay_systemd_required_services_list_default: "{{ [devture_systemd_docker_base_docker_service_name] if devture_systemd_docker_base_docker_service_name else [] }}"
|
|
matrix_meshtastic_relay_systemd_required_services_list_auto: []
|
|
matrix_meshtastic_relay_systemd_required_services_list_custom: []
|
|
|
|
# List of systemd services that matrix-meshtastic-relay.service wants
|
|
matrix_meshtastic_relay_systemd_wanted_services_list: []
|
|
|
|
# Hostname of the Matrix homeserver the bot connects to.
|
|
matrix_meshtastic_relay_matrix_host: ""
|
|
|
|
# URL of the Matrix homeserver the bot connects to.
|
|
matrix_meshtastic_relay_matrix_homeserver_url: "https://{{ matrix_meshtastic_relay_matrix_host }}"
|
|
|
|
# Fully-qualified Matrix ID of the bot user.
|
|
matrix_meshtastic_relay_matrix_bot_user_id: "@meshtasticbot:{{ matrix_meshtastic_relay_matrix_host }}"
|
|
|
|
# Password for the bot's Matrix account.
|
|
# On first startup, mmrelay uses this to log in and persist credentials (including E2EE
|
|
# material) under `{{ matrix_meshtastic_relay_data_path }}/matrix/` on the host. After
|
|
# that, the password can (and should) be cleared from configuration.
|
|
matrix_meshtastic_relay_matrix_bot_password: ""
|
|
|
|
# Controls whether End-to-End Encryption is enabled.
|
|
# Requires password-based login on first start so that mmrelay can create `credentials.json`.
|
|
matrix_meshtastic_relay_e2ee_enabled: true
|
|
|
|
# Connection type to the Meshtastic device. One of: "tcp", "serial", "ble".
|
|
matrix_meshtastic_relay_connection_type: ""
|
|
|
|
# For `tcp` connection type: hostname/IP of the Meshtastic device to connect to.
|
|
matrix_meshtastic_relay_tcp_host: "meshtastic.local"
|
|
|
|
# For `serial` connection type: path of the serial device to connect to.
|
|
# This device is passed through to the container. The host must have it available.
|
|
matrix_meshtastic_relay_serial_port: "/dev/ttyUSB0"
|
|
|
|
# For `ble` connection type: BLE MAC address of the Meshtastic device to connect to.
|
|
# BLE requires `--network=host` and a DBus bind-mount (see the systemd service template).
|
|
matrix_meshtastic_relay_ble_address: "AA:BB:CC:DD:EE:FF"
|
|
|
|
# Display name of the Meshtastic network.
|
|
matrix_meshtastic_relay_meshnet_name: "MediumFast"
|
|
|
|
# Whether relaying from Matrix to Meshtastic is enabled.
|
|
matrix_meshtastic_relay_meshtastic_broadcast_enabled: true
|
|
|
|
# Matrix rooms to bridge to Meshtastic channels.
|
|
# Each entry should have an `id` (Matrix room alias or room ID) and a `meshtastic_channel`.
|
|
matrix_meshtastic_relay_matrix_rooms_list:
|
|
- id: "#meshtastic:{{ matrix_meshtastic_relay_matrix_host }}"
|
|
meshtastic_channel: "0"
|
|
|
|
# Whether plugins should only respond when the bot is explicitly mentioned.
|
|
matrix_meshtastic_relay_plugin_global_require_bot_mention: true
|
|
|
|
# Enabled built-in ("core") plugins.
|
|
# See: https://github.com/jeremiah-k/meshtastic-matrix-relay/wiki/Core-Plugins
|
|
matrix_meshtastic_relay_plugins_ping_enabled: true
|
|
matrix_meshtastic_relay_plugins_health_enabled: true
|
|
matrix_meshtastic_relay_plugins_weather_enabled: true
|
|
matrix_meshtastic_relay_plugins_weather_units: metric
|
|
matrix_meshtastic_relay_plugins_telemetry_enabled: true
|
|
matrix_meshtastic_relay_plugins_map_enabled: true
|
|
matrix_meshtastic_relay_plugins_nodes_enabled: true
|
|
|
|
# Default configuration passed to the bridge via config.yaml.
|
|
# See `../templates/config.yaml.j2` for what's rendered.
|
|
# Use `matrix_meshtastic_relay_configuration_extension_yaml` to override
|
|
# specific values or add/remove keys without having to maintain a full copy here.
|
|
matrix_meshtastic_relay_configuration_default:
|
|
matrix:
|
|
homeserver: "{{ matrix_meshtastic_relay_matrix_homeserver_url }}"
|
|
password: "{{ matrix_meshtastic_relay_matrix_bot_password }}"
|
|
bot_user_id: "{{ matrix_meshtastic_relay_matrix_bot_user_id }}"
|
|
e2ee:
|
|
enabled: "{{ matrix_meshtastic_relay_e2ee_enabled }}"
|
|
matrix_rooms: "{{ matrix_meshtastic_relay_matrix_rooms_list }}"
|
|
meshtastic: "{{ matrix_meshtastic_relay_meshtastic_configuration }}"
|
|
logging:
|
|
level: info
|
|
log_to_file: false
|
|
database:
|
|
enable_wal: true
|
|
busy_timeout_ms: 5000
|
|
pragmas:
|
|
synchronous: NORMAL
|
|
temp_store: MEMORY
|
|
msg_map:
|
|
msgs_to_keep: 500
|
|
wipe_on_restart: true
|
|
plugins:
|
|
require_bot_mention: "{{ matrix_meshtastic_relay_plugin_global_require_bot_mention }}"
|
|
ping:
|
|
active: "{{ matrix_meshtastic_relay_plugins_ping_enabled }}"
|
|
health:
|
|
active: "{{ matrix_meshtastic_relay_plugins_health_enabled }}"
|
|
weather:
|
|
active: "{{ matrix_meshtastic_relay_plugins_weather_enabled }}"
|
|
units: "{{ matrix_meshtastic_relay_plugins_weather_units }}"
|
|
telemetry:
|
|
active: "{{ matrix_meshtastic_relay_plugins_telemetry_enabled }}"
|
|
map:
|
|
active: "{{ matrix_meshtastic_relay_plugins_map_enabled }}"
|
|
nodes:
|
|
active: "{{ matrix_meshtastic_relay_plugins_nodes_enabled }}"
|
|
|
|
# Connection-type-specific `meshtastic` configuration block used by
|
|
# `matrix_meshtastic_relay_configuration_default`.
|
|
matrix_meshtastic_relay_meshtastic_configuration: |
|
|
{{
|
|
(
|
|
{'connection_type': 'tcp', 'host': matrix_meshtastic_relay_tcp_host}
|
|
if matrix_meshtastic_relay_connection_type == 'tcp' else
|
|
(
|
|
{'connection_type': 'serial', 'serial_port': matrix_meshtastic_relay_serial_port}
|
|
if matrix_meshtastic_relay_connection_type == 'serial' else
|
|
(
|
|
{'connection_type': 'ble', 'ble_address': matrix_meshtastic_relay_ble_address}
|
|
if matrix_meshtastic_relay_connection_type == 'ble' else {}
|
|
)
|
|
)
|
|
) | combine({
|
|
'meshnet_name': matrix_meshtastic_relay_meshnet_name,
|
|
'broadcast_enabled': matrix_meshtastic_relay_meshtastic_broadcast_enabled,
|
|
'message_interactions': {
|
|
'reactions': false,
|
|
'replies': false,
|
|
},
|
|
})
|
|
}}
|
|
|
|
# Holds additional configuration values that get merged into the default
|
|
# configuration (see `matrix_meshtastic_relay_configuration_default`).
|
|
#
|
|
# If you need something more special, you can take full control by changing
|
|
# `matrix_meshtastic_relay_configuration` directly.
|
|
matrix_meshtastic_relay_configuration_extension_yaml: |
|
|
# Your custom YAML configuration goes here.
|
|
# This configuration extends the default starting configuration (`matrix_meshtastic_relay_configuration_default`).
|
|
#
|
|
# 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
|
|
# redefining `matrix_meshtastic_relay_configuration` directly.
|
|
|
|
matrix_meshtastic_relay_configuration_extension: "{{ matrix_meshtastic_relay_configuration_extension_yaml | from_yaml if matrix_meshtastic_relay_configuration_extension_yaml | from_yaml is mapping else {} }}"
|
|
|
|
# Holds the final configuration rendered to `config.yaml`.
|
|
# Normally, you don't need to change this variable — use
|
|
# `matrix_meshtastic_relay_configuration_extension_yaml` instead.
|
|
matrix_meshtastic_relay_configuration: "{{ matrix_meshtastic_relay_configuration_default | combine(matrix_meshtastic_relay_configuration_extension, recursive=True) }}"
|
|
|
|
# matrix_meshtastic_relay_restart_necessary controls whether the service
|
|
# will be restarted (when true) or merely started (when false) by the
|
|
# systemd service manager role (when conditional restart is enabled).
|
|
#
|
|
# This value is automatically computed during installation based on whether
|
|
# any configuration files, the systemd service file, or the container image changed.
|
|
# The default of `false` means "no restart needed" — appropriate when the role's
|
|
# installation tasks haven't run (e.g., due to --tags skipping them).
|
|
matrix_meshtastic_relay_restart_necessary: false
|