mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2024-11-21 20:27:17 +03:00
89e4df134b
Adds an example systemd service file. This is meant for the new and hopefully improved runner installation docs i'm writing over at [forgejo/docs#869](https://codeberg.org/forgejo/docs/pulls/860). Reviewed-on: https://code.forgejo.org/forgejo/runner/pulls/273 Reviewed-by: Michael Kriese <michael.kriese@gmx.de> Co-authored-by: Kwonunn <kwonunnx@gmail.com> Co-committed-by: Kwonunn <kwonunnx@gmail.com>
16 lines
395 B
Desktop File
16 lines
395 B
Desktop File
[Unit]
|
|
Description=Forgejo Runner
|
|
Documentation=https://forgejo.org/docs/latest/admin/actions/
|
|
After=docker.service
|
|
|
|
[Service]
|
|
ExecStart=forgejo-runner daemon
|
|
ExecReload=/bin/kill -s HUP $MAINPID
|
|
User=runner # This user must be created first
|
|
WorkingDirectory=/home/runner # This directory must be created first
|
|
Restart=on-failure
|
|
TimeoutSec=0
|
|
RestartSec=10
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|