mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-10-03 02:59:33 +02:00
* Documentation update * New files for role * Update existing files to add support for matrix-steam-bridge * Typos and misc fixes * Change docker tag to latest until version # is stable * Align bridge permissions * Correct user localpart * Remove trailing + * Fix syslog identifier * Actually enable the service correctly * One more typo fix * Third time's the charm * Fix config file paths * Fix config after bridge repo changes * Add default appservice public address - set public_media to false by default for testing * Fix default config for steamkit-service path * Fix bluesky reference * Fix default container path * Fix appservice connection to http for internal, change port to standard 8080 * Fix appservice port * Enable public_media by default, add labels * Enable public_media by default, add labels * Allow bridge to update its own config and generate public_media signing key * Add deterministic public_media_signing_key, expose portal cleanup * Change default public_media path to omit `matrix.` from the path as it has been found that URLs generated by the bridge will only match {{ matrix_domain }} * Remove domain re-write * Revert "Change default public_media path to omit `matrix.` from the path as it has been found that URLs generated by the bridge will only match {{ matrix_domain }}" This reverts commit5f399effb9
. * Fix TLS label if playbook TLS is disabled * Match default bridge TLS config * Related to3daf14d69
and60ab08014
which enable async media by default for mautrix-go bridges * Adjust matrix-bridge-steam files to add new line at the end of files * Pin matrix-bridge-steam (latest -> 1.0.3) --------- Co-authored-by: Slavi Pantaleev <slavi@devture.com>
49 lines
2.3 KiB
Django/Jinja
49 lines
2.3 KiB
Django/Jinja
#jinja2: lstrip_blocks: True
|
|
[Unit]
|
|
Description=Matrix Steam bridge
|
|
{% for service in matrix_steam_bridge_systemd_required_services_list %}
|
|
Requires={{ service }}
|
|
After={{ service }}
|
|
{% endfor %}
|
|
{% for service in matrix_steam_bridge_systemd_wanted_services_list %}
|
|
Wants={{ service }}
|
|
{% endfor %}
|
|
DefaultDependencies=no
|
|
|
|
[Service]
|
|
Type=simple
|
|
Environment="HOME={{ devture_systemd_docker_base_systemd_unit_home_path }}"
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} stop -t {{ devture_systemd_docker_base_container_stop_grace_time_seconds }} matrix-steam-bridge 2>/dev/null || true'
|
|
ExecStartPre=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-steam-bridge 2>/dev/null || true'
|
|
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} create \
|
|
--rm \
|
|
--name=matrix-steam-bridge \
|
|
--log-driver=none \
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
--cap-drop=ALL \
|
|
--network={{ matrix_steam_bridge_container_network }} \
|
|
--mount type=bind,src={{ matrix_steam_bridge_config_path }},dst=/app/config,ro \
|
|
--mount type=bind,src={{ matrix_steam_bridge_data_path }},dst=/app/data \
|
|
--label-file={{ matrix_steam_bridge_base_path }}/labels \
|
|
{% for arg in matrix_steam_bridge_container_extra_arguments %}
|
|
{{ arg }} \
|
|
{% endfor %}
|
|
{{ matrix_steam_bridge_docker_image }} \
|
|
/usr/bin/steam -c /app/config/config.yaml -r /app/config/registration.yaml --no-update
|
|
|
|
{% for network in matrix_steam_bridge_container_additional_networks %}
|
|
ExecStartPre={{ devture_systemd_docker_base_host_command_docker }} network connect {{ network }} matrix-steam-bridge
|
|
{% endfor %}
|
|
|
|
ExecStart={{ devture_systemd_docker_base_host_command_docker }} start --attach matrix-steam-bridge
|
|
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} stop -t {{ devture_systemd_docker_base_container_stop_grace_time_seconds }} matrix-steam-bridge 2>/dev/null || true'
|
|
ExecStop=-{{ devture_systemd_docker_base_host_command_sh }} -c '{{ devture_systemd_docker_base_host_command_docker }} rm matrix-steam-bridge 2>/dev/null || true'
|
|
Restart=always
|
|
RestartSec=30
|
|
SyslogIdentifier=matrix-steam-bridge
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|