Skip to content

Commit 69c2f53

Browse files
Fix workflow
1 parent 64df775 commit 69c2f53

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.github/workflows/prompts-docker.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,4 @@ jobs:
3333
context: .
3434
platforms: linux/amd64,linux/arm64
3535
push: true
36-
tags:
37-
- vonwig/prompts:latest
38-
- mcp/run:latest
39-
- mcp/docker:latest
36+
tags: vonwig/prompts:latest,mcp/run:latest,mcp/docker:latest

docs/content/tools/docs/claude-desktop.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ Enable mcp_run in your claude_desktop_config.json file using the following snipp
88
```json
99
{
1010
"mcpServers": {
11-
"mcp_run": {
11+
"mcp_docker": {
1212
"command": "docker",
1313
"args": [
1414
"run", "--rm", "-i", "--pull", "always",
1515
"-v", "/var/run/docker.sock:/var/run/docker.sock",
1616
"--mount", "type=volume,source=docker-prompts,target=/prompts",
17-
"vonwig/prompts:latest",
17+
"mcp/docker:latest",
1818
"serve",
1919
"--mcp",
2020
"--register", "github:docker/labs-ai-tools-for-devs?path=prompts/examples/hello_world.md"

prompts/catalog.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,19 @@ registry:
1111
description: Use curl to make HTTP requests
1212
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/examples/curl.md
1313
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/curl.svg
14-
hello-world:
14+
hello world:
1515
description: echo a greeting using a container!
1616
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/examples/hello_world.md
17-
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/hello-world.svg
17+
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/docker.svg
1818
ffmpeg:
1919
description: Use ffmpeg to process video files
2020
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/examples/ffmpeg.md
2121
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/ffmpeg.svg
22-
explain_dockerfile:
22+
explain dockerfiles:
2323
description: Provide a detailed description, analysis, or annotation of a given Dockerfile.
2424
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/examples/explain_dockerfile.md
2525
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/docker.svg
26+
qr code:
27+
description: Generate a qrcode for an input text string
28+
ref: github:docker/labs-ai-tools-for-devs?ref=main&path=prompts/examples/qr_code.md
29+
icon: https://cdn.jsdelivr.net/npm/simple-icons@v7/icons/qr.svg

prompts/examples/curl.md

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
name: curl
23
model: claude-3-5-sonnet-20241022
34
tools:
45
- name: curl

0 commit comments

Comments
 (0)