summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Pankonen <kevin.pankonen@webpt.com>2015-12-03 15:40:08 -0700
committerKevin Pankonen <kevin.pankonen@webpt.com>2015-12-03 15:41:42 -0700
commit387e5656a1e158eaa1c010f22d332d758b336179 (patch)
tree265a0186a1f5c88b8507ffb56b85109b85400567
parent1481255efa653b036469a5c98fadd0ecdb46e5b0 (diff)
downloadgitlab-ce-387e5656a1e158eaa1c010f22d332d758b336179.tar.gz
fixes #3263 slashes are replaced with two underscores
-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 ef8a7ec1e86..64e52eba3a2 100644
--- a/doc/ci/docker/using_docker_images.md
+++ b/doc/ci/docker/using_docker_images.md
@@ -60,11 +60,11 @@ This is image that have fully preconfigured `wordpress` and have `MySQL` server
```
Next time when you run your application the `tutum/wordpress` will be started
-and you will have access to it from your build container under hostname: `tutum_wordpress`.
+and you will have access to it from your build container under hostname: `tutum__wordpress`.
Alias hostname for the service is made from the image name:
1. Everything after `:` is stripped,
-2. '/' is replaced to `_`.
+2. '/' is replaced with `__`.
### Configuring services
Many services accept environment variables, which allow you to easily change database names or set account names depending on the environment.