mirror of
https://github.com/cdr/code-server.git
synced 2026-03-31 10:33:09 +02:00
Update example docker command port bind options (#88)
must use 127.0.0.1 and not `localhost`
This commit is contained in:
parent
3d654a8df7
commit
8e68411174
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
Try it out:
|
||||
```bash
|
||||
docker run -p localhost:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth
|
||||
docker run -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth
|
||||
```
|
||||
|
||||
- Code on your Chromebook, tablet, and laptop with a consistent dev environment.
|
||||
|
|
|
|||
Loading…
Reference in a new issue