Skip to content

docs: add early access dev container docs #17613

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
May 1, 2025
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
mafredri committed Apr 30, 2025
commit 91167b8bfbd17692fc83b49a5db92db5b3ec4ca2
16 changes: 8 additions & 8 deletions docs/early-access/devcontainers.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ For example, with this `devcontainer.json` configuration:

```json
{
"appPort": ["8080:8080", "4000:3000"]
"appPort": ["8080:8080", "4000:3000"]
}
```

Expand Down Expand Up @@ -275,13 +275,13 @@ To use the code-server feature, add the following to your `devcontainer.json`:

```json
{
"features": {
"ghcr.io/coder/devcontainer-features/code-server:1": {
"port": 13337,
"host": "0.0.0.0"
}
},
"appPort": ["13337:13337"]
"features": {
"ghcr.io/coder/devcontainer-features/code-server:1": {
"port": 13337,
"host": "0.0.0.0"
}
},
"appPort": ["13337:13337"]
}
```

Expand Down
Loading