summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Maczukin <tomasz@maczukin.pl>2016-04-25 12:10:56 +0200
committerTomasz Maczukin <tomasz@maczukin.pl>2016-04-25 12:13:50 +0200
commit9bd0f46a85c9f642722000de8317607c4ed567d4 (patch)
tree6208d987ce6127892c2d760b0c92ec7b9659ceda
parent2eee6a0cbc02c80eb0750a7ca77ee31c4cf0884f (diff)
downloadgitlab-ce-fix/ci-docker-images-documentation.tar.gz
Replace '-n' with '--name' in docker related documentationfix/ci-docker-images-documentation
[ci skip]
-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 bd748f1b986..84212fb3c61 100644
--- a/doc/ci/docker/using_docker_images.md
+++ b/doc/ci/docker/using_docker_images.md
@@ -239,8 +239,8 @@ is specific to your project.
Then create some service containers:
```
-docker run -d -n service-mysql mysql:latest
-docker run -d -n service-postgres postgres:latest
+docker run -d --name service-mysql mysql:latest
+docker run -d --name service-postgres postgres:latest
```
This will create two service containers, named `service-mysql` and