|
|
|
@@ -17,12 +17,14 @@ ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_s |
|
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm {{ matrix_user_verification_service_container_name }} 2>/dev/null' |
|
|
|
|
|
|
|
|
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name {{ matrix_user_verification_service_container_name }}\ |
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} run \ |
|
|
|
--rm \ |
|
|
|
--name={{ matrix_user_verification_service_container_name }}\ |
|
|
|
--log-driver=none \ |
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \ |
|
|
|
--cap-drop=ALL \ |
|
|
|
--read-only \ |
|
|
|
--network={{ matrix_docker_network }} \ |
|
|
|
--network={{ matrix_user_verification_service_container_network }} \ |
|
|
|
{% if matrix_user_verification_service_container_http_host_bind_port %} |
|
|
|
-p {{ matrix_user_verification_service_container_http_host_bind_port }}:3000 \ |
|
|
|
{% endif %} |
|
|
|
@@ -32,6 +34,10 @@ ExecStart={{ devture_systemd_docker_base_host_command_docker }} run --rm --name |
|
|
|
{% endfor %} |
|
|
|
{{ matrix_user_verification_service_docker_image }} |
|
|
|
|
|
|
|
{% for network in matrix_user_verification_service_container_additional_networks %} |
|
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} network connect {{ network }} {{ matrix_user_verification_service_container_name }} |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} kill {{ matrix_user_verification_service_container_name }} 2>/dev/null' |
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm {{ matrix_user_verification_service_container_name }} 2>/dev/null' |
|
|
|
Restart=always |
|
|
|
|