@@ -9,7 +9,7 @@ MCP Gateway bietet zwei Bereitstellungsmethoden:
99### Image-Registrys
1010
1111Die Images werden in folgenden Registrys veröffentlicht:
12- - Docker Hub: ` docker.io/ifuryst/mcp-gateway -* `
12+ - Docker Hub: ` docker.io/ifuryst/unla -* `
1313- GitHub Container Registry: ` ghcr.io/amoylab/unla/* `
1414- Alibaba Cloud Container Registry: ` registry.ap-southeast-1.aliyuncs.com/amoylab/unla-* `
1515
@@ -26,27 +26,27 @@ Die Images werden in folgenden Registrys veröffentlicht:
2626
2727``` bash
2828# All-in-One-Version
29- docker pull docker.io/ifuryst/mcp-gateway -allinone:latest
29+ docker pull docker.io/ifuryst/unla -allinone:latest
3030docker pull ghcr.io/amoylab/unla/allinone:latest
3131docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-allinone:latest
3232
3333# API Server
34- docker pull docker.io/ifuryst/mcp-gateway -apiserver:latest
34+ docker pull docker.io/ifuryst/unla -apiserver:latest
3535docker pull ghcr.io/amoylab/unla/apiserver:latest
3636docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-apiserver:latest
3737
3838# MCP Gateway
39- docker pull docker.io/ifuryst/mcp-gateway -mcp-gateway:latest
39+ docker pull docker.io/ifuryst/unla -mcp-gateway:latest
4040docker pull ghcr.io/amoylab/unla/mcp-gateway:latest
4141docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mcp-gateway:latest
4242
4343# Mock User Service
44- docker pull docker.io/ifuryst/mcp-gateway -mock-server:latest
44+ docker pull docker.io/ifuryst/unla -mock-server:latest
4545docker pull ghcr.io/amoylab/unla/mock-server:latest
4646docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-mock-server:latest
4747
4848# Web Frontend
49- docker pull docker.io/ifuryst/mcp-gateway -web:latest
49+ docker pull docker.io/ifuryst/unla -web:latest
5050docker pull ghcr.io/amoylab/unla/web:latest
5151docker pull registry.ap-southeast-1.aliyuncs.com/amoylab/unla-web:latest
5252```
@@ -84,8 +84,8 @@ Es wird empfohlen, folgende Verzeichnisse einzubinden:
84841 . Erstellen Sie die notwendigen Verzeichnisse und laden Sie die Konfigurationsdateien herunter:
8585
8686``` bash
87- mkdir -p mcp-gateway /{configs,data}
88- cd mcp-gateway /
87+ mkdir -p unla /{configs,data}
88+ cd unla /
8989curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/apiserver.yaml -o configs/apiserver.yaml
9090curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/configs/mcp-gateway.yaml -o configs/mcp-gateway.yaml
9191curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.example -o .env.allinone
@@ -103,7 +103,7 @@ curl -sL https://raw.githubusercontent.com/amoylab/unla/refs/heads/main/.env.exa
103103` ` ` bash
104104# Alibaba Cloud Registry verwenden (empfohlen für Server/Geräte in China)
105105docker run -d \
106- --name mcp-gateway \
106+ --name unla \
107107 -p 8080:80 \
108108 -p 5234:5234 \
109109 -p 5235:5235 \
@@ -118,7 +118,7 @@ docker run -d \
118118
119119# GitHub Container Registry verwenden
120120docker run -d \
121- --name mcp-gateway \
121+ --name unla \
122122 -p 8080:80 \
123123 -p 5234:5234 \
124124 -p 5235:5235 \
0 commit comments