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:
authorChristian Morsing <1633423-Morsing@users.noreply.gitlab.com>2019-03-05 22:47:58 +0300
committerChristian Morsing <1633423-Morsing@users.noreply.gitlab.com>2019-03-05 22:47:58 +0300
commit7d62092882b2f9caefac85c3799190fcab284897 (patch)
tree5504790ad0b46acd5c97f309a0d551a4c649bf42 /doc
parenta592a78072bb44fed1a25c25f2cabdc4cf4bc0bd (diff)
Update using_docker_build.md
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
```