6334f6c1ea
Depending on the distro, common commands like sleep and chown may either be located in /bin or /usr/bin. Systemd added path lookup to ExecStart in v239, allowing only the command name to be put in unit files and not the full path as historically required. At least Ubuntu 18.04 LTS is however still on v237 so we should maintain portability for a while longer.
33 lines
1.0 KiB
Django/Jinja
33 lines
1.0 KiB
Django/Jinja
#jinja2: lstrip_blocks: "True"
|
|
[Unit]
|
|
Description=Email2Matrix
|
|
After=docker.service
|
|
Requires=docker.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStartPre=-{{ matrix_host_command_docker }} kill matrix-email2matrix
|
|
ExecStartPre=-{{ matrix_host_command_docker }} rm matrix-email2matrix
|
|
|
|
ExecStart={{ matrix_host_command_docker }} run --rm --name matrix-email2matrix \
|
|
--log-driver=none \
|
|
--user={{ matrix_user_uid }}:{{ matrix_user_gid }} \
|
|
--cap-drop=ALL \
|
|
--read-only \
|
|
--network={{ matrix_docker_network }} \
|
|
-p {{ matrix_email2matrix_smtp_host_bind_port }}:2525 \
|
|
--mount type=bind,src={{ matrix_email2matrix_config_dir_path }}/config.json,dst=/config.json,ro \
|
|
{% for arg in matrix_email2matrix_container_extra_arguments %}
|
|
{{ arg }} \
|
|
{% endfor %}
|
|
{{ matrix_email2matrix_docker_image }}
|
|
|
|
ExecStop=-{{ matrix_host_command_docker }} kill matrix-email2matrix
|
|
ExecStop=-{{ matrix_host_command_docker }} rm matrix-email2matrix
|
|
Restart=always
|
|
RestartSec=30
|
|
SyslogIdentifier=matrix-email2matrix
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|