Improve docker install formatting

This commit is contained in:
Anmol Sethi 2020-05-14 22:01:45 -04:00
parent 73b2ff0945
commit 181bad9563
No known key found for this signature in database
GPG Key ID: 8CEF1878FF10ADEB

View File

@ -60,16 +60,16 @@ brew services start code-server
### Docker
```bash
# This will start a code-server container and expose it at http://127.0.0.1:8080.
# It will also mount your current directory into the container as `/home/coder/project`
# and forward your UID/GID so that all file system operations occur as your user outside
# the container.
docker run -it -p 127.0.0.1:8080:8080 \
-v "$PWD:/home/coder/project" \
-u "$(id -u):$(id -g)" \
codercom/code-server:latest
```
This will start a code-server container and expose it at http://127.0.0.1:8080. It will also mount
your current directory into the container as `/home/coder/project` and forward your UID/GID so that
all file system operations occur as your user outside the container.
### Self contained releases
We publish self contained archives for every release on [github](https://github.com/cdr/code-server/releases).