Skip to content

Commit 3b8c1f0

Browse files
crystalinclaude
andcommitted
fix: rename proxy Docker image to claude-nexus-proxy
- Change proxy image from moonsonglabs/claude-nexus to moonsonglabs/claude-nexus-proxy - Keep dashboard image as moonsonglabs/claude-nexus-dashboard (unchanged) - Update all Docker build/push scripts and documentation - This provides clearer distinction between proxy and dashboard images 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 71cb809 commit 3b8c1f0

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

docker/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This directory contains the Docker configurations for the Claude Nexus Proxy pro
44

55
## Images
66

7-
### 1. Proxy Service (`moonsonglabs/claude-nexus`)
7+
### 1. Proxy Service (`moonsonglabs/claude-nexus-proxy`)
88

99
- Port: 3000
1010
- Handles Claude API proxying
@@ -40,7 +40,7 @@ This directory contains the Docker configurations for the Claude Nexus Proxy pro
4040

4141
```bash
4242
# Build individually with custom tags
43-
docker build -f proxy/Dockerfile -t moonsonglabs/claude-nexus:v9 ..
43+
docker build -f proxy/Dockerfile -t moonsonglabs/claude-nexus-proxy:v9 ..
4444
docker build -f dashboard/Dockerfile -t moonsonglabs/claude-nexus-dashboard:v9 ..
4545
```
4646

@@ -93,7 +93,7 @@ docker-compose --project-name claude-nexus --env-file ../.env up -d
9393
# Proxy service
9494
docker run -p 3000:3000 \
9595
-v ./credentials:/app/credentials:ro \
96-
moonsonglabs/claude-nexus:latest
96+
moonsonglabs/claude-nexus-proxy:latest
9797

9898
# Dashboard service
9999
docker run -p 3001:3001 \

docker/build-images.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ if [ "$TAG" != "latest" ]; then
121121
echo -e "\n ${YELLOW}Or use the push script:${NC}"
122122
echo -e " ${BLUE}./docker/push-images.sh ${TAG}${NC}"
123123
else
124-
echo -e " ${BLUE}docker push moonsonglabs/claude-nexus:latest${NC}"
124+
echo -e " ${BLUE}docker push moonsonglabs/claude-nexus-proxy:latest${NC}"
125125
echo -e " ${BLUE}docker push moonsonglabs/claude-nexus-dashboard:latest${NC}"
126126
echo -e "\n ${YELLOW}Or use the push script:${NC}"
127127
echo -e " ${BLUE}./docker/push-images.sh${NC}"

docker/push-images.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fi
4242

4343
# Push proxy image
4444
echo -e "\n${BLUE}Pushing Proxy Service...${NC}"
45-
docker push moonsonglabs/claude-nexus:${TAG}
45+
docker push moonsonglabs/claude-nexus-proxy:${TAG}
4646
if [ $? -eq 0 ]; then
4747
echo -e "${GREEN}✓ Proxy image pushed successfully${NC}"
4848
else
@@ -64,7 +64,7 @@ fi
6464
if [ "$TAG" != "latest" ] && [ "$PUSH_LATEST" = "yes" ]; then
6565
echo -e "\n${BLUE}Also pushing 'latest' tags...${NC}"
6666

67-
docker push moonsonglabs/claude-nexus:latest
67+
docker push moonsonglabs/claude-nexus-proxy:latest
6868
if [ $? -eq 0 ]; then
6969
echo -e "${GREEN}✓ Proxy 'latest' pushed successfully${NC}"
7070
else
@@ -83,9 +83,9 @@ fi
8383

8484
echo -e "\n${GREEN}Push completed successfully!${NC}"
8585
echo -e "\nImages available at:"
86-
echo -e " ${YELLOW}https://hub.docker.com/r/moonsonglabs/claude-nexus${NC}"
86+
echo -e " ${YELLOW}https://hub.docker.com/r/moonsonglabs/claude-nexus-proxy${NC}"
8787
echo -e " ${YELLOW}https://hub.docker.com/r/moonsonglabs/claude-nexus-dashboard${NC}"
8888

8989
echo -e "\nTo pull and run:"
90-
echo -e " ${BLUE}docker pull moonsonglabs/claude-nexus:${TAG}${NC}"
90+
echo -e " ${BLUE}docker pull moonsonglabs/claude-nexus-proxy:${TAG}${NC}"
9191
echo -e " ${BLUE}docker pull moonsonglabs/claude-nexus-dashboard:${TAG}${NC}"

docs/03-Operations/deployment/docker-compose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ services:
8989
retries: 5
9090

9191
proxy:
92-
image: moonsonglabs/claude-nexus:latest
92+
image: moonsonglabs/claude-nexus-proxy:latest
9393
depends_on:
9494
postgres:
9595
condition: service_healthy

scripts/ops/update-proxy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
1313

1414
VERSION=$1
1515
SERVICE=$2
16-
PROXY_IMAGE="moonsonglabs/claude-nexus"
16+
PROXY_IMAGE="moonsonglabs/claude-nexus-proxy"
1717
DASHBOARD_IMAGE="moonsonglabs/claude-nexus-dashboard"
1818

1919
if [ -z "$VERSION" ]; then

0 commit comments

Comments
 (0)