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
path: root/doc
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2019-03-07 06:33:28 +0300
committerEvan Read <eread@gitlab.com>2019-03-07 06:33:28 +0300
commitc6e11e2ef057a9c9d969c2d894a85338188feefa (patch)
treebe73cca729b3cbcce386e8528775f7a0e12e7ed9 /doc
parent20805bedfcb2de15a661c327d29b1305367d6167 (diff)
parent7d62092882b2f9caefac85c3799190fcab284897 (diff)
Merge branch 'patch-47' into 'master'
Update using_docker_build.md Closes #58556 See merge request gitlab-org/gitlab-ce!25779
Diffstat (limited to 'doc')
-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
```