summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatej Zerovnik <matej.zerovnik@arnes.si>2017-06-12 21:36:08 +0200
committerMatej Zerovnik <matej.zerovnik@arnes.si>2017-06-12 21:36:08 +0200
commitaf156c6081025f94b638b207af63be4008da3769 (patch)
tree0c0a6782c0151c14f642a701a335a30daa6290a4
parentb1221669168e781c534f6aa7a31bdd087dcc97a7 (diff)
downloadgitlab-ce-af156c6081025f94b638b207af63be4008da3769.tar.gz
Language typos fixed
-rw-r--r--doc/ci/docker/using_docker_images.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ci/docker/using_docker_images.md b/doc/ci/docker/using_docker_images.md
index 43a37e3ba1a..61ba45cf2d3 100644
--- a/doc/ci/docker/using_docker_images.md
+++ b/doc/ci/docker/using_docker_images.md
@@ -173,7 +173,7 @@ When the job is run, `tutum/wordpress` will be started and you will have
access to it from your build container under the hostnames `tutum-wordpress`
(requires GitLab Runner v1.1.0 or newer) and `tutum__wordpress`.
-When using private registry, image name usually also include hostname and port
+When using a private registry, the image name also includes a hostname and port
of the registry.
```yaml
@@ -181,7 +181,7 @@ services:
- docker.example.com:5000/wordpress:latest
```
-In this case, hostname will also include registry's hostname. Service will be
+The service hostname will also include the registry hostname. Service will be
available under hostnames `docker.example.com-wordpress` (requires GitLab Runner v1.1.0 or newer)
and `docker.example.com__wordpress`.