diff --git a/prompts/examples/hello_world.md b/prompts/examples/hello_world.md index 6b2e874..720971f 100644 --- a/prompts/examples/hello_world.md +++ b/prompts/examples/hello_world.md @@ -1,6 +1,7 @@ --- +name: hello-docker tools: - - name: hello-world + - name: hello-docker description: print a secret message container: image: busybox:latest diff --git a/runbook.md b/runbook.md index 7e78919..339416a 100644 --- a/runbook.md +++ b/runbook.md @@ -281,9 +281,21 @@ docker run --rm \ ``` +## dump current mcp server logs + ```sh docker run --rm \ -v docker-prompts:/prompts:ro \ busybox:latest \ /bin/sh -c "cat prompts/docker-mcp-server.out" ``` + +## tail current mcp server logs + +```sh +docker run --rm \ + -v docker-prompts:/prompts:ro \ + busybox:latest \ + /bin/sh -c "tail -f prompts/docker-mcp-server.out" +``` +