Merge branch 'origin/main' into 'next-release/main'

This commit is contained in:
oauth 2025-04-26 09:40:12 +00:00
commit 12ba3fdac6
4 changed files with 6 additions and 0 deletions
docs
docs/20-usage
15-terminology
70-volumes.md
versioned_docs/version-3.5/20-usage
15-terminology
70-volumes.md

View File

@ -24,6 +24,7 @@
- **Dependency**: [Workflows][Workflow] can depend on each other, and if possible, they are executed in parallel.
- **Status**: Status refers to the outcome of a step or [workflow][Workflow] after it has been executed, determined by the internal command exit code. At the end of a [workflow][Workflow], its status is sent to the [forge][Forge].
- **Service extension**: Some parts of Woodpecker internal services like secrets storage or config fetcher can be replaced through service extensions.
- **Task**: A task is a [workflow][Workflow] that's currently waiting for its execution in the task queue.
## Woodpecker architecture

View File

@ -19,6 +19,8 @@ Volumes are only available to trusted repositories and for security reasons shou
+ - /var/run/docker.sock:/var/run/docker.sock
```
If you use the Docker backend, you can also use named volumes like `some_volume_name:/var/run/volume`.
Please note that Woodpecker mounts volumes on the host machine. This means you must use absolute paths when you configure volumes. Attempting to use relative paths will result in an error.
```diff

View File

@ -24,6 +24,7 @@
- **Dependency**: [Workflows][Workflow] can depend on each other, and if possible, they are executed in parallel.
- **Status**: Status refers to the outcome of a step or [workflow][Workflow] after it has been executed, determined by the internal command exit code. At the end of a [workflow][Workflow], its status is sent to the [forge][Forge].
- **Service extension**: Some parts of Woodpecker internal services like secrets storage or config fetcher can be replaced through service extensions.
- **Task**: A task is a [workflow][Workflow] that's currently waiting for its execution in the task queue.
## Woodpecker architecture

View File

@ -19,6 +19,8 @@ Volumes are only available to trusted repositories and for security reasons shou
+ - /var/run/docker.sock:/var/run/docker.sock
```
If you use the Docker backend, you can also use named volumes like `some_volume_name:/var/run/volume`.
Please note that Woodpecker mounts volumes on the host machine. This means you must use absolute paths when you configure volumes. Attempting to use relative paths will result in an error.
```diff