xoxys.freshrss_docker/templates/etc/systemd/system/freshrss.service.j2
Robert Kaussow 6dc2a86c07
Some checks failed
continuous-integration/drone/push Build is failing
fix typo
2019-11-24 23:31:47 +01:00

23 lines
659 B
Django/Jinja

#jinja2:lstrip_blocks: True
{{ ansible_managed | comment }}
[Unit]
Description=TT-RSS news feed reader
Requires=docker.service network-online.target
After=docker.service network-online.target
[Service]
WorkingDirectory={{ freshrss_service_directory }}
Type=simple
TimeoutStartSec=15min
Restart={{ freshrss_restart_policy }}
ExecStartPre={{ freshrss_docker_compose_bin }} pull --quiet --ignore-pull-failures
ExecStart={{ freshrss_docker_compose_bin }} up --remove-orphans
ExecStop={{ freshrss_docker_compose_bin }} down --remove-orphans
ExecReload={{ freshrss_docker_compose_bin }} pull --quiet --ignore-pull-failures
[Install]
WantedBy=multi-user.target