16 lines
353 B
SYSTEMD
16 lines
353 B
SYSTEMD
[Unit]
|
|
Description=Syncthing (Compose Service)
|
|
Requires=docker.service
|
|
After=docker.service
|
|
|
|
[Service]
|
|
WorkingDirectory=/opt/syncthing
|
|
ExecStart=/usr/bin/docker-compose --project-name syncthing up
|
|
ExecStop=/usr/bin/docker-compose --project-name syncthing down
|
|
TimeoutStartSec=0
|
|
Restart=on-failure
|
|
StartLimitBurst=3
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|