Skip to content
Snippets Groups Projects
Commit a2e9812d authored by Ian Baum's avatar Ian Baum
Browse files

Merge branch 'fix-docker-doc-port' into 'master'

Switch to using port 8929 in the docker example docs.

See merge request gitlab-org/omnibus-gitlab!3203
parents 6ff80af2 0eedae54
No related branches found
No related tags found
No related merge requests found
......@@ -364,6 +364,6 @@
hostname: 'gitlab.example.com'
environment:
GITLAB_OMNIBUS_CONFIG: |
external_url 'http://gitlab.example.com:9090'
external_url 'http://gitlab.example.com:8929'
gitlab_rails['gitlab_shell_ssh_port'] = 2224
ports:
......@@ -368,6 +368,6 @@
gitlab_rails['gitlab_shell_ssh_port'] = 2224
ports:
- '9090:9090'
- '8929:8929'
- '2224:22'
volumes:
- '/srv/gitlab/config:/etc/gitlab'
......@@ -375,7 +375,7 @@
- '/srv/gitlab/data:/var/opt/gitlab'
```
This is the same as using `--publish 9090:9090 --publish 2224:22`.
This is the same as using `--publish 8929:8929 --publish 2224:22`.
## Update GitLab using Docker compose
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment