forked from claude-did-this/claude-hub
feat: rename Docker image to claude-hub to match repository name
- Update workflow to use intelligenceassist/claude-hub instead of claude-github-webhook - Update all README references to use new image name - Update Docker Hub documentation with correct image names and links
This commit is contained in:
2
.github/workflows/docker-publish.yml
vendored
2
.github/workflows/docker-publish.yml
vendored
@@ -18,7 +18,7 @@ on:
|
||||
env:
|
||||
DOCKER_HUB_USERNAME: ${{ vars.DOCKER_HUB_USERNAME || 'cheffromspace' }}
|
||||
DOCKER_HUB_ORGANIZATION: ${{ vars.DOCKER_HUB_ORGANIZATION || 'intelligenceassist' }}
|
||||
IMAGE_NAME: ${{ vars.DOCKER_IMAGE_NAME || 'claude-github-webhook' }}
|
||||
IMAGE_NAME: ${{ vars.DOCKER_IMAGE_NAME || 'claude-hub' }}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
@@ -5,7 +5,7 @@ A webhook service that enables Claude AI to respond to GitHub mentions and execu
|
||||
## Quick Start
|
||||
|
||||
```bash
|
||||
docker pull intelligenceassist/claude-github-webhook:latest
|
||||
docker pull intelligenceassist/claude-hub:latest
|
||||
|
||||
docker run -d \
|
||||
-p 8082:3002 \
|
||||
@@ -15,7 +15,7 @@ docker run -d \
|
||||
-e ANTHROPIC_API_KEY=your_anthropic_key \
|
||||
-e BOT_USERNAME=@YourBotName \
|
||||
-e AUTHORIZED_USERS=user1,user2 \
|
||||
intelligenceassist/claude-github-webhook:latest
|
||||
intelligenceassist/claude-hub:latest
|
||||
```
|
||||
|
||||
## Features
|
||||
@@ -34,7 +34,7 @@ version: '3.8'
|
||||
|
||||
services:
|
||||
claude-webhook:
|
||||
image: intelligenceassist/claude-github-webhook:latest
|
||||
image: intelligenceassist/claude-hub:latest
|
||||
ports:
|
||||
- "8082:3002"
|
||||
volumes:
|
||||
@@ -84,9 +84,9 @@ Mention your bot in any issue or PR comment:
|
||||
|
||||
## Links
|
||||
|
||||
- [GitHub Repository](https://github.com/intelligence-assist/claude-github-webhook)
|
||||
- [Documentation](https://github.com/intelligence-assist/claude-github-webhook/tree/main/docs)
|
||||
- [Issue Tracker](https://github.com/intelligence-assist/claude-github-webhook/issues)
|
||||
- [GitHub Repository](https://github.com/intelligence-assist/claude-hub)
|
||||
- [Documentation](https://github.com/intelligence-assist/claude-hub/tree/main/docs)
|
||||
- [Issue Tracker](https://github.com/intelligence-assist/claude-hub/issues)
|
||||
|
||||
## License
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
[](test/README.md)
|
||||
[](https://codecov.io/gh/intelligence-assist/claude-hub)
|
||||
[](https://github.com/intelligence-assist/claude-hub/releases)
|
||||
[](https://hub.docker.com/r/intelligenceassist/claude-github-webhook)
|
||||
[](https://hub.docker.com/r/intelligenceassist/claude-hub)
|
||||
[](package.json)
|
||||
[](LICENSE)
|
||||
|
||||
@@ -70,7 +70,7 @@ Claude autonomously handles complete development workflows. It analyzes your ent
|
||||
|
||||
```bash
|
||||
# Pull the latest image
|
||||
docker pull intelligenceassist/claude-github-webhook:latest
|
||||
docker pull intelligenceassist/claude-hub:latest
|
||||
|
||||
# Run with environment variables
|
||||
docker run -d \
|
||||
@@ -82,7 +82,7 @@ docker run -d \
|
||||
-e ANTHROPIC_API_KEY=your_anthropic_key \
|
||||
-e BOT_USERNAME=@YourBotName \
|
||||
-e AUTHORIZED_USERS=user1,user2 \
|
||||
intelligenceassist/claude-github-webhook:latest
|
||||
intelligenceassist/claude-hub:latest
|
||||
|
||||
# Or use Docker Compose
|
||||
wget https://raw.githubusercontent.com/intelligence-assist/claude-hub/main/docker-compose.yml
|
||||
|
||||
Reference in New Issue
Block a user