chore: update references to the renamed container in documentation and workflows
Renamed all instances of 'telegram-mcp-server' to 'telegram-mcp' in docker-compose.yml, README.md, and the Docker build workflow to ensure consistency and clarity across the project.
This commit is contained in:
parent
91039571ca
commit
b1f0e79b6b
3 changed files with 3 additions and 3 deletions
2
.github/workflows/docker-build.yml
vendored
2
.github/workflows/docker-build.yml
vendored
|
|
@ -22,7 +22,7 @@ jobs:
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Build Docker image
|
- name: Build Docker image
|
||||||
run: docker build --file Dockerfile --tag telegram-mcp-server:ci .
|
run: docker build --file Dockerfile --tag telegram-mcp:ci .
|
||||||
|
|
||||||
docker_compose:
|
docker_compose:
|
||||||
name: Build & Validate Docker Compose
|
name: Build & Validate Docker Compose
|
||||||
|
|
|
||||||
|
|
@ -227,7 +227,7 @@ Edit your Claude desktop config (e.g. `~/Library/Application Support/Claude/clau
|
||||||
"command": "uv",
|
"command": "uv",
|
||||||
"args": [
|
"args": [
|
||||||
"--directory",
|
"--directory",
|
||||||
"/full/path/to/telegram-mcp-server",
|
"/full/path/to/telegram-mcp",
|
||||||
"run",
|
"run",
|
||||||
"main.py"
|
"main.py"
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
version: '3.8'
|
version: '3.8'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
telegram-mcp-server:
|
telegram-mcp:
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue