mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-22 18:01:02 +00:00
Clarify Docs on Docker for new users in intro (#606)
In the Codeberg CI Matrix channel, there was confusion about the `image` specifying Docker containers. I changed some phrases and hopefully made it clearer to new users.
This commit is contained in:
parent
33a657103e
commit
442561fea2
1 changed files with 4 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
# Welcome to Woodpecker
|
||||
|
||||
Woodpecker is a simple CI engine with great extensibility.
|
||||
Woodpecker is a simple CI engine with great extensibility. It runs your pipelines inside [Docker](https://www.docker.com/) containers, so if you are already using them in your daily workflow, you'll love Woodpecker for sure.
|
||||
|
||||
![woodpecker](woodpecker.png)
|
||||
|
||||
|
@ -26,7 +26,9 @@ pipeline:
|
|||
### Build steps are containers
|
||||
|
||||
- Define any Docker image as context
|
||||
- Install the needed tools in custom Docker images, use them as context
|
||||
- either use your own and install the needed tools in custom Docker images, or
|
||||
- search [Docker Hub](https://hub.docker.com/) for images that are already tailored for your needs)
|
||||
- List the commands that should be executed in your container, in order to build or test your application
|
||||
|
||||
```diff
|
||||
pipeline:
|
||||
|
|
Loading…
Reference in a new issue