mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2026-06-24 09:01:24 +03:00
Support additional container arguments for matrix-livekit-jwt
This commit is contained in:
committed by
Slavi Pantaleev
parent
d06094ffc3
commit
753f8ca7db
@@ -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: []
|
||||||
|
|||||||
+3
@@ -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 }}
|
||||||
|
|||||||
Reference in New Issue
Block a user