diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-07-07 12:57:43 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-07-07 12:57:43 +0200 |
commit | 7a3b47ff473986c9aea730f6cf3ef99ff0c1d450 (patch) | |
tree | 25c13a794559cb72933171b1ad67541201ec5e6d /docker | |
parent | e906008eb82ce04534fd72fd6013ed7ef79fda1e (diff) | |
download | gitlab-ce-7a3b47ff473986c9aea730f6cf3ef99ff0c1d450.tar.gz |
Fix port issue
Diffstat (limited to 'docker')
-rw-r--r-- | docker/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/README.md b/docker/README.md index 507d88e0e71..7b27e980473 100644 --- a/docker/README.md +++ b/docker/README.md @@ -108,7 +108,7 @@ sudo docker pull gitlab/gitlab-ce:latest 1. create the container once again with previously specified options. ```bash sudo docker run --detach \ - --publish 80443:443 --publish 8080:80 --publish 2222:22 \ + --publish 8443:443 --publish 8080:80 --publish 2222:22 \ --name gitlab \ --restart always \ --volume /srv/gitlab/config:/etc/gitlab \ |