Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify Docs on Docker for new users in intro #606

Merged
merged 1 commit into from
Dec 13, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/docs/10-intro.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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:
Expand Down