You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
39 lines
1.2 KiB
6 years ago
|
#jinja2: lstrip_blocks: "True"
|
||
6 years ago
|
[Unit]
|
||
|
Description=Matrix Appservice Discord server
|
||
6 years ago
|
{% 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 %}
|
||
6 years ago
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
ExecStartPre=-/usr/bin/docker kill matrix-appservice-discord
|
||
|
ExecStartPre=-/usr/bin/docker rm matrix-appservice-discord
|
||
6 years ago
|
|
||
6 years ago
|
ExecStart=/usr/bin/docker run --rm --name matrix-appservice-discord \
|
||
|
--log-driver=none \
|
||
6 years ago
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
||
|
--cap-drop=ALL \
|
||
6 years ago
|
--network={{ matrix_docker_network }} \
|
||
|
{% if matrix_appservice_discord_container_expose_client_server_api_port %}
|
||
|
-p 127.0.0.1:9005:9005 \
|
||
|
{% endif %}
|
||
|
-v {{ matrix_appservice_discord_base_path }}:/data \
|
||
6 years ago
|
{% for arg in matrix_appservice_discord_container_extra_arguments %}
|
||
|
{{ arg }} \
|
||
|
{% endfor %}
|
||
6 years ago
|
{{ matrix_appservice_discord_docker_image }}
|
||
6 years ago
|
|
||
6 years ago
|
ExecStop=-/usr/bin/docker kill matrix-appservice-discord
|
||
|
ExecStop=-/usr/bin/docker rm matrix-appservice-discord
|
||
|
Restart=always
|
||
|
RestartSec=30
|
||
6 years ago
|
SyslogIdentifier=matrix-appservice-discord
|
||
6 years ago
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|