summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael A. Smith <msmith3@ebay.com>2015-12-07 10:29:42 -0500
committerMichael A. Smith <msmith3@ebay.com>2015-12-07 10:29:55 -0500
commit8a0507d523293289ae4b7d61bb3fce8a873e3dcc (patch)
treec5015889f2bb5df200a0f078969eb5932e030ef7
parentbd5fb1b479f29df3c2150b6c375c1b7bffd28931 (diff)
downloadgitlab-ce-8a0507d523293289ae4b7d61bb3fce8a873e3dcc.tar.gz
Update Docker Syntax
-rw-r--r--doc/ci/docker/using_docker_images.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/docker/using_docker_images.md b/doc/ci/docker/using_docker_images.md
index 64e52eba3a2..1feae62b1c7 100644
--- a/doc/ci/docker/using_docker_images.md
+++ b/doc/ci/docker/using_docker_images.md
@@ -190,7 +190,7 @@ This will create two service containers (MySQL and PostgreSQL).
1. Create a build container and execute script in its context:
```
-$ cat build_script | docker run -n build -i -l mysql:service-mysql -l postgres:service-postgres ruby:2.1 /bin/bash
+$ docker run --name build -i --link=service-mysql:mysql --link=service-postgres:postgres ruby:2.1 /bin/bash < build_script
```
This will create build container that has two service containers linked.
The build_script is piped using STDIN to bash interpreter which executes the build script in container.