File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
docs/03-Operations/deployment Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff 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 ..
4444docker 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
9494docker 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
9999docker run -p 3001:3001 \
Original file line number Diff line number Diff 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} "
123123else
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} "
Original file line number Diff line number Diff line change 4242
4343# Push proxy image
4444echo -e " \n${BLUE} Pushing Proxy Service...${NC} "
45- docker push moonsonglabs/claude-nexus:${TAG}
45+ docker push moonsonglabs/claude-nexus-proxy :${TAG}
4646if [ $? -eq 0 ]; then
4747 echo -e " ${GREEN} ✓ Proxy image pushed successfully${NC} "
4848else
6464if [ " $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
8383
8484echo -e " \n${GREEN} Push completed successfully!${NC} "
8585echo -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} "
8787echo -e " ${YELLOW} https://hub.docker.com/r/moonsonglabs/claude-nexus-dashboard${NC} "
8888
8989echo -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} "
9191echo -e " ${BLUE} docker pull moonsonglabs/claude-nexus-dashboard:${TAG}${NC} "
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ REPO_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
1313
1414VERSION=$1
1515SERVICE=$2
16- PROXY_IMAGE=" moonsonglabs/claude-nexus"
16+ PROXY_IMAGE=" moonsonglabs/claude-nexus-proxy "
1717DASHBOARD_IMAGE=" moonsonglabs/claude-nexus-dashboard"
1818
1919if [ -z " $VERSION " ]; then
You can’t perform that action at this time.
0 commit comments