Support additional container arguments for matrix-livekit-jwt

This commit is contained in:
Hollie Hutchinson
2026-06-19 15:38:20 +01:00
committed by Slavi Pantaleev
parent d06094ffc3
commit 753f8ca7db
2 changed files with 6 additions and 0 deletions
@@ -125,3 +125,6 @@ matrix_livekit_jwt_service_systemd_required_services_list_custom: []
# The default of `false` means "no restart needed" — appropriate when the role's # 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). # installation tasks haven't run (e.g., due to --tags skipping them).
matrix_livekit_jwt_service_restart_necessary: false matrix_livekit_jwt_service_restart_necessary: false
# Support additional container arguments for the LiveKit JWT service
matrix_livekit_jwt_service_container_additional_arguments: []
@@ -22,6 +22,9 @@ ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} create \
{% if matrix_livekit_jwt_service_container_http_host_bind_port %} {% if matrix_livekit_jwt_service_container_http_host_bind_port %}
-p {{ matrix_livekit_jwt_service_container_http_host_bind_port }}:{{ matrix_livekit_jwt_service_container_port }} \ -p {{ matrix_livekit_jwt_service_container_http_host_bind_port }}:{{ matrix_livekit_jwt_service_container_port }} \
{% endif %} {% endif %}
{% for arg in matrix_livekit_jwt_service_container_additional_arguments %}
{{ arg }} \
{% endfor %}
--env-file={{ matrix_livekit_jwt_service_base_path }}/env \ --env-file={{ matrix_livekit_jwt_service_base_path }}/env \
--label-file={{ matrix_livekit_jwt_service_base_path }}/labels \ --label-file={{ matrix_livekit_jwt_service_base_path }}/labels \
{{ matrix_livekit_jwt_service_container_image }} {{ matrix_livekit_jwt_service_container_image }}