File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -117,6 +117,21 @@ claude-yolo -v ~/.terraform.d:/root/.terraform.d
117117- ** Request Tracing** : Debug with ` --trace ` flag using claude-trace
118118- ** Docker Socket** : Optional mounting with ` CLAUDE_YOLO_DOCKER_SOCKET=true `
119119
120+ ## Docker Images
121+
122+ Claude Code YOLO is available from multiple container registries:
123+
124+ ``` bash
125+ # GitHub Container Registry (recommended, primary)
126+ docker pull ghcr.io/lroolle/claude-code-yolo:latest
127+
128+ # Docker Hub (fallback)
129+ docker pull lroolle/claude-code-yolo:latest
130+
131+ # Use specific registry
132+ DOCKER_IMAGE=lroolle/claude-code-yolo claude-yolo
133+ ```
134+
120135## Manual Setup
121136
122137``` bash
Original file line number Diff line number Diff line change 44# Claude Starter Script with Docker Support
55# Runs Claude Code CLI locally or in a Docker container for safe execution
66
7- VERSION=" 0.2.0 "
8- DOCKER_IMAGE=" ${DOCKER_IMAGE:- lroolle/ claude-code-yolo} "
7+ VERSION=" 0.2.2 "
8+ DOCKER_IMAGE=" ${DOCKER_IMAGE:- ghcr.io / lroolle/ claude-code-yolo} "
99DOCKER_TAG=" ${DOCKER_TAG:- latest} "
1010
1111DEFAULT_ANTHROPIC_MODEL=" sonnet-4"
Original file line number Diff line number Diff line change 55
66SCRIPT_NAME=" claude.sh"
77YOLO_WRAPPER=" claude-yolo"
8- DOCKER_IMAGE=" lroolle/claude-code-yolo:latest"
8+ DOCKER_IMAGE=" ghcr.io/ lroolle/claude-code-yolo:latest"
99GITHUB_RAW=" https://raw.githubusercontent.com/lroolle/claude-code-yolo/main"
1010
1111echo " Claude Code YOLO Installer"
@@ -46,7 +46,11 @@ chmod +x "$INSTALL_DIR/$YOLO_WRAPPER"
4646# Pull Docker image
4747echo " "
4848echo " Pulling Docker image..."
49- docker pull " $DOCKER_IMAGE "
49+ if ! docker pull " $DOCKER_IMAGE " ; then
50+ echo " Failed to pull from GitHub Container Registry, trying Docker Hub..."
51+ DOCKER_IMAGE_FALLBACK=" lroolle/claude-code-yolo:latest"
52+ docker pull " $DOCKER_IMAGE_FALLBACK "
53+ fi
5054
5155# Success message
5256echo " "
You can’t perform that action at this time.
0 commit comments