summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pundsack <markpundsack@users.noreply.github.com>2016-06-07 23:50:26 -0700
committerMark Pundsack <markpundsack@users.noreply.github.com>2016-06-13 22:06:13 -0700
commit6ca1370c92dcf074af73562fb0fd613c8af45ce1 (patch)
treedb6c70f16e864dc2a42f072cd1f2ee53750f235e
parent9b30f26b988f69995d1f548f79020c23dfe1a9ea (diff)
downloadgitlab-ce-6ca1370c92dcf074af73562fb0fd613c8af45ce1.tar.gz
Fix more instructions
-rw-r--r--doc/ci/docker/using_docker_build.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ci/docker/using_docker_build.md b/doc/ci/docker/using_docker_build.md
index 3af4afbbefe..aae37010508 100644
--- a/doc/ci/docker/using_docker_build.md
+++ b/doc/ci/docker/using_docker_build.md
@@ -24,16 +24,16 @@ However, this requires special configuration of GitLab Runner to enable `docker`
## 1. Use shell executor
The simplest approach is to install GitLab Runner in `shell` execution mode.
-GitLab Runner then executes build scripts as `gitlab-runner` user.
+GitLab Runner then executes build scripts as the `gitlab-runner` user.
1. Install [GitLab Runner](https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/#installation).
1. During GitLab Runner installation select `shell` as method of executing build scripts or use command:
```bash
- $ sudo gitlab-runner register -n \
+ $ sudo gitlab-ci-multi-runner register -n \
--url https://gitlab.com/ci \
- --token RUNNER_TOKEN \
+ --registration-token REGISTRATION_TOKEN \
--executor shell
--description "My Runner"
```