Skip to content

Commit 4261da3

Browse files
committed
feat(install): add note when falling back to Docker Hub image
1 parent 4acb3d2 commit 4261da3

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ if ! docker pull "$DOCKER_IMAGE"; then
5050
echo "Failed to pull from GitHub Container Registry, trying Docker Hub..."
5151
DOCKER_IMAGE_FALLBACK="lroolle/claude-code-yolo:latest"
5252
docker pull "$DOCKER_IMAGE_FALLBACK"
53+
echo ""
54+
echo -e "\033[93mNOTE: Using Docker Hub fallback image\033[0m"
55+
echo "To use Docker Hub by default, set: export DOCKER_IMAGE=lroolle/claude-code-yolo"
56+
echo "Add this to your shell profile (.bashrc, .zshrc) to make it permanent"
5357
fi
5458

5559
# Success message

0 commit comments

Comments
 (0)