1 Commits
main ... docs

Author SHA1 Message Date
b45ed24826 docs: Improve README 2025-10-04 11:13:15 +02:00
7 changed files with 20 additions and 12 deletions

View File

@ -4,6 +4,21 @@
!! WARNING: This recipe should be used with great caution, since it has access to the docker daemon. We recommend running it in a seperate vm or host !!
<!-- metadata -->
* **Category**: Apps
* **Status**: 5
* **LICENSE**: [GPLv3-or-later](https://code.forgejo.org/forgejo/runner/src/branch/main/LICENSE)
* **Maintainers**: [Klasse & Methode](https://klasse-methode.it) (@p4u1 @p4u1_f4u1:matrix.org)
* **Repository**: [code.forgejo.org/forgejo/runner](https://code.forgejo.org/forgejo/runner)
* **Documentation**: [forgejo.org/docs/next/admin/actions/](https://forgejo.org/docs/next/admin/actions/)
* **Image**: [`runner`](https://code.forgejo.org/forgejo/-/packages/container/runner/11), 4, upstream
* **Healthcheck**: No
* **Backups**: no
* **Email**: 0
* **Tests**: 0
* **SSO**: 0
<!-- endmetadata -->
## Registering
The forgejo runner needs to be registered at the forgejo instance. For that see the [official documentation](https://forgejo.org/docs/latest/admin/runner-installation/#standard-registration) on how to create a token.

View File

@ -1,4 +1,4 @@
export RUNNER_CONF_VERSION=v9
export RUNNER_CONF_VERSION=v8-b
export ENTRYPOINT_VERSION=v9
register_runner() {

View File

@ -2,7 +2,7 @@ version: '3.8'
services:
app:
image: 'code.forgejo.org/forgejo/runner:12.3.0'
image: 'code.forgejo.org/forgejo/runner:8.0.1'
environment:
- DOCKER_HOST=tcp://socket-proxy:2375
configs:
@ -15,7 +15,7 @@ services:
- "data:/data"
deploy:
labels:
- "coop-cloud.${STACK_NAME}.version=4.1.0+12.1.2"
- "coop-cloud.${STACK_NAME}.version=2.0.0+8.0.1"
networks:
- internal
ports:
@ -23,7 +23,7 @@ services:
entrypoint: /custom-entrypoint.sh
socket-proxy:
image: lscr.io/linuxserver/socket-proxy:3.2.10
image: lscr.io/linuxserver/socket-proxy:3.2.3
environment:
- PROXY_READ_TIMEOUT=5000
- ALLOW_START=1

View File

@ -3,6 +3,7 @@
set -e
mkdir -p /data
touch /data/.runner
mkdir -p /data/.cache
# Wait for the runner to get registered before starting the forgejo-runner daemon.

View File

@ -1 +0,0 @@
Fixed a typo in .env.sample and upgrade runner to v11

View File

@ -1 +0,0 @@
The breaking change in forgejo-runner should not affect us. Making a major bump just in case

View File

@ -1,6 +0,0 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}