Commit d232137a authored by Marcia Ramos's avatar Marcia Ramos

Merge branch 'docs/change-text-from-examples' into 'master'

Fix text based on example

See merge request gitlab-org/gitlab-ce!27787
parents cfe04803 f0dca9ac
...@@ -2065,8 +2065,8 @@ include: ...@@ -2065,8 +2065,8 @@ include:
file: /templates/docker-workflow.yml file: /templates/docker-workflow.yml
``` ```
The `/templates/docker-workflow.yml` present in `/group/my-project` includes two local files The `/templates/docker-workflow.yml` present in `group/my-project` includes two local files
of the `/group/my-project`: of the `group/my-project`:
```yaml ```yaml
include: include:
...@@ -2074,14 +2074,14 @@ include: ...@@ -2074,14 +2074,14 @@ include:
- local: : /templates/docker-testing.yml - local: : /templates/docker-testing.yml
``` ```
Our `/templates/docker-build.yml` present in `/group/my-project` adds a `docker-build` job: Our `/templates/docker-build.yml` present in `group/my-project` adds a `docker-build` job:
```yaml ```yaml
docker-build: docker-build:
script: docker build -t my-image . script: docker build -t my-image .
``` ```
Our second `/templates/docker-test.yml` present in `/group/my-project` adds a `docker-test` job: Our second `/templates/docker-test.yml` present in `group/my-project` adds a `docker-test` job:
```yaml ```yaml
docker-test: docker-test:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment