mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
Fix docker instructions using port 80 on localhost.
This was confusing, because we otherwise suggest consistently to users that they should connect to their development environment on port 9991. Fixes #1032.
This commit is contained in:
@@ -1171,7 +1171,7 @@ docker build -t user/zulipdev .
|
||||
Now you're going to install Zulip dependencies in the image:
|
||||
|
||||
```
|
||||
docker run -itv $(pwd):/srv/zulip -p 80:9991 user/zulipdev /bin/bash
|
||||
docker run -itv $(pwd):/srv/zulip -p 9991:9991 user/zulipdev /bin/bash
|
||||
$ /usr/bin/python /srv/zulip/provision.py --docker
|
||||
docker ps -af ancestor=user/zulipdev
|
||||
docker commit -m "Zulip installed" <container id> user/zulipdev:v2
|
||||
@@ -1180,7 +1180,7 @@ docker commit -m "Zulip installed" <container id> user/zulipdev:v2
|
||||
Finally you can run the docker server with:
|
||||
|
||||
```
|
||||
docker run -itv $(pwd):/srv/zulip -p 80:9991 user/zulipdev:v2 \
|
||||
docker run -itv $(pwd):/srv/zulip -p 9991:9991 user/zulipdev:v2 \
|
||||
/srv/zulip/scripts/start-dockers
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user