8000 docs: document unsupported features by mtojek · Pull Request #219 · coder/envbuilder · GitHub
[go: up one dir, main page]

Skip to content

docs: document unsupported features #219

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 3 commits into from
Jun 5, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
8000
Diff view
Diff view
Next Next commit
docs: document unsupported features
  • Loading branch information
mtojek committed Jun 5, 2024
commit ee516c020b27498cb78f2fea5427055e9546b260
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,23 @@ docker run -it --rm \
- [`ENVBUILDER_SSL_CERT_DIR`](https://go.dev/src/crypto/x509/root_unix.go#L25): Identifies which directory to check for SSL certificate files.
- `ENVBUILDER_SSL_CERT_BASE64`: Specifies a base64-encoded SSL certificate that will be added to the global certificate pool on start.

## Unsupported features

### Development Containers

| Name | Description | Known issues |
| ------------------------ | ------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------- |
| Volume mounts | Volumes are used to persist data and share directories between the host and container. | TODO |
| Port forwarding | Port forwarding allows exposing container ports to the host, making services accessible. | [#48](https://github.com/coder/envbuilder/issues/48) |
| Script init & Entrypoint | `init` adds a tiny init process to the container and `entrypoint` sets a script to run at container startup. | TODO |
| Customizations | Product specific properties, for instance: _VS Code_ `settings` and `extensions`. | [#43](https://github.com/coder/envbuilder/issues/43) |

### Devfile

> [Devfiles](https://devfile.io/) automate and simplify development process by adopting the existing devfiles that are available in the [public community registry](https://registry.devfile.io/viewer).

Issue: [#113](https://github.com/coder/envbuilder/issues/113)

# Local Development

Building `envbuilder` currently **requires** a Linux system.
Expand Down
0