Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ci/services/index.md')
-rw-r--r--doc/ci/services/index.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/ci/services/index.md b/doc/ci/services/index.md
index a2ffd095de3..d0481482d00 100644
--- a/doc/ci/services/index.md
+++ b/doc/ci/services/index.md
@@ -460,9 +460,7 @@ docker run -d --name service-mysql mysql:latest
docker run -d --name service-postgres postgres:latest
```
-This creates two service containers, named `service-mysql` and
-`service-postgres` which use the latest MySQL and PostgreSQL images
-respectively. They both run in the background (`-d`).
+The previous commands create two service containers. The service container named `service-mysql` uses the latest MySQL image. The one named `service-postgres` uses the latest PostgreSQL image. Both service containers run in the background (`-d`).
Finally, create a build container by executing the `build_script` file we
created earlier: