docs: update all references from OCI registry to GitHub Pages Helm repo

Update CLAUDE.md, README.md, and workflows README to reference the new
GitHub Pages Helm repository at https://cpfarhood.github.io/devcontainer
instead of the old OCI registry at oci://ghcr.io/cpfarhood/charts.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
DevContainer User
2026-02-25 13:38:03 +00:00
parent 38e481484e
commit e99ec65cd9
3 changed files with 22 additions and 13 deletions
+17 -10
View File
@@ -14,23 +14,30 @@ A containerized cloud development environment with web-based GUI access, featuri
## Quick Start
### Option A: Quickstart (Recommended)
For 80% of users, use the simplified quickstart values:
### Option A: Install from Helm Repo (Recommended)
```bash
# Copy and customize the quickstart template
# Add the Helm repository
helm repo add devcontainer https://cpfarhood.github.io/devcontainer
helm repo update
# Deploy with one command
helm install mydev devcontainer/devcontainer \
--set name=mydev \
--set githubRepo=https://github.com/youruser/yourrepo
```
### Option B: Install from Source
```bash
# Clone and customize the quickstart template
cp chart/values-quickstart.yaml my-values.yaml
# Edit my-values.yaml to set your name and repository
# Edit my-values.yaml to set your name and repository:
# name: mydev
# githubRepo: https://github.com/youruser/yourrepo
# Deploy with minimal configuration
helm install mydev ./chart -f my-values.yaml
```
### Option B: One-Command Deploy
### Option C: One-Command from Source
```bash
helm install mydev ./chart \