fix: Windows PowerShell 5.1 start_docker crash and paste-safe docs snippets

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Abhishek Kumar 2026-07-01 15:54:11 +05:30
parent a850d18767
commit dc98298b66
5 changed files with 12 additions and 17 deletions

View file

@ -86,11 +86,9 @@ REGISTRY=dograhai ./start_docker.sh
```
```powershell Windows
# Using GitHub Container Registry (recommended)
$env:REGISTRY = 'ghcr.io/dograh-hq'
.\start_docker.ps1
$env:REGISTRY = 'ghcr.io/dograh-hq'; .\start_docker.ps1
# Using Docker Hub
$env:REGISTRY = 'dograhai'
.\start_docker.ps1
$env:REGISTRY = 'dograhai'; .\start_docker.ps1
```
</CodeGroup>