17 lines
638 B
Plaintext
17 lines
638 B
Plaintext
RECIPE=forgejo-runner
|
|
|
|
# The level of logging, can be trace, debug, info, warn, error, fatal
|
|
LOG_LEVEL=info
|
|
|
|
# Enable or disable caching. For the cache to work, the actions containers need to be able to access the runner via network, so make sure to set CONTAINER_NETWORK accordingly.
|
|
CACHE_ENABLED=false
|
|
CACHE_HOST="app"
|
|
|
|
# Defines the number of concrurrent tasks to be run
|
|
RUNNER_CAPACITY=1
|
|
|
|
RUNNER_TIMEOUT=3h
|
|
|
|
# Set to 'host', to use the host network or any other. By using 'default', the runner gets configured to use the internal network of its own stack, so the action can access the docker socket proxy.
|
|
#CONTAINER_NETWORK=default
|