We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35cbaf3 commit 6bc6d5eCopy full SHA for 6bc6d5e
prompts/examples/hello_world.md
@@ -1,6 +1,7 @@
1
---
2
+name: hello-docker
3
tools:
- - name: hello-world
4
+ - name: hello-docker
5
description: print a secret message
6
container:
7
image: busybox:latest
runbook.md
@@ -281,9 +281,21 @@ docker run --rm \
281
282
```
283
284
+## dump current mcp server logs
285
+
286
```sh
287
docker run --rm \
288
-v docker-prompts:/prompts:ro \
289
busybox:latest \
290
/bin/sh -c "cat prompts/docker-mcp-server.out"
291
292
293
+## tail current mcp server logs
294
295
+```sh
296
+docker run --rm \
297
+ -v docker-prompts:/prompts:ro \
298
+ busybox:latest \
299
+ /bin/sh -c "tail -f prompts/docker-mcp-server.out"
300
+```
301
0 commit comments