summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2019-03-07 03:33:28 +0000
committerEvan Read <eread@gitlab.com>2019-03-07 03:33:28 +0000
commitc6e11e2ef057a9c9d969c2d894a85338188feefa (patch)
treebe73cca729b3cbcce386e8528775f7a0e12e7ed9
parent20805bedfcb2de15a661c327d29b1305367d6167 (diff)
parent7d62092882b2f9caefac85c3799190fcab284897 (diff)
downloadgitlab-ce-c6e11e2ef057a9c9d969c2d894a85338188feefa.tar.gz
Merge branch 'patch-47' into 'master'
Update using_docker_build.md Closes #58556 See merge request gitlab-org/gitlab-ce!25779
-rw-r--r--doc/ci/docker/using_docker_build.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ci/docker/using_docker_build.md b/doc/ci/docker/using_docker_build.md
index a462c75f2f5..4f9efb57b8d 100644
--- a/doc/ci/docker/using_docker_build.md
+++ b/doc/ci/docker/using_docker_build.md
@@ -17,7 +17,7 @@ used to create and test an image:
```bash
docker build -t my-image dockerfiles/
-docker run my-docker-image /script/to/run/tests
+docker run my-image /script/to/run/tests
docker tag my-image my-registry:5000/my-image
docker push my-registry:5000/my-image
```