1
0
mirror of https://git.cloudron.io/cloudron/gitea-app synced 2025-09-27 23:47:28 +00:00

act_runner implemented

This commit is contained in:
Vladimir D
2025-05-08 22:26:58 +04:00
parent d0d4b89f12
commit 626326f65e
5 changed files with 58 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
[program:act_runner]
directory=/app/data/act_runner/
command=bash -c "while true; do [[ -f /app/data/act_runner/.runner ]] && break; echo 'Wait for act_runner config'; sleep 1; done && act_runner daemon --config /app/data/act_runner/config.yaml"
user=git
autostart=true
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0
environment=HOME="/home/git",USER="git"