2019-05-07 19:23:35 +00:00
|
|
|
#jinja2: lstrip_blocks: "True"
|
2019-03-03 17:22:52 +00:00
|
|
|
[Unit]
|
|
|
|
Description=Matrix Appservice Discord server
|
2019-05-17 16:14:12 +00:00
|
|
|
{% for service in matrix_appservice_discord_systemd_required_services_list %}
|
|
|
|
Requires={{ service }}
|
|
|
|
After={{ service }}
|
|
|
|
{% endfor %}
|
|
|
|
{% for service in matrix_appservice_discord_systemd_wanted_services_list %}
|
|
|
|
Wants={{ service }}
|
|
|
|
{% endfor %}
|
2019-03-03 17:22:52 +00:00
|
|
|
|
|
|
|
[Service]
|
|
|
|
Type=simple
|
|
|
|
ExecStartPre=-/usr/bin/docker kill matrix-appservice-discord
|
|
|
|
ExecStartPre=-/usr/bin/docker rm matrix-appservice-discord
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2019-06-07 09:15:37 +00:00
|
|
|
# Intentional delay, so that the homeserver (we likely depend on) can manage to start.
|
|
|
|
ExecStartPre=/bin/sleep 5
|
|
|
|
|
2019-03-03 17:22:52 +00:00
|
|
|
ExecStart=/usr/bin/docker run --rm --name matrix-appservice-discord \
|
|
|
|
--log-driver=none \
|
2019-03-04 14:42:22 +00:00
|
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
|
|
--cap-drop=ALL \
|
2019-03-03 17:22:52 +00:00
|
|
|
--network={{ matrix_docker_network }} \
|
2019-05-24 22:41:04 +00:00
|
|
|
{% if matrix_appservice_discord_container_http_host_bind_port %}
|
|
|
|
-p {{ matrix_appservice_discord_container_http_host_bind_port }}:9005 \
|
2019-03-03 17:22:52 +00:00
|
|
|
{% endif %}
|
|
|
|
-v {{ matrix_appservice_discord_base_path }}:/data \
|
2019-05-17 16:14:12 +00:00
|
|
|
{% for arg in matrix_appservice_discord_container_extra_arguments %}
|
|
|
|
{{ arg }} \
|
|
|
|
{% endfor %}
|
2019-03-03 17:22:52 +00:00
|
|
|
{{ matrix_appservice_discord_docker_image }}
|
2019-05-16 00:41:45 +00:00
|
|
|
|
2019-03-03 17:22:52 +00:00
|
|
|
ExecStop=-/usr/bin/docker kill matrix-appservice-discord
|
|
|
|
ExecStop=-/usr/bin/docker rm matrix-appservice-discord
|
|
|
|
Restart=always
|
|
|
|
RestartSec=30
|
2019-05-16 00:41:45 +00:00
|
|
|
SyslogIdentifier=matrix-appservice-discord
|
2019-03-03 17:22:52 +00:00
|
|
|
|
|
|
|
[Install]
|
|
|
|
WantedBy=multi-user.target
|