Skip to content

Commit

Permalink
Update names
Browse files Browse the repository at this point in the history
  • Loading branch information
slimslenderslacks committed Dec 9, 2024
1 parent 35cbaf3 commit 6bc6d5e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prompts/examples/hello_world.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
name: hello-docker
tools:
- name: hello-world
- name: hello-docker
description: print a secret message
container:
image: busybox:latest
Expand Down
12 changes: 12 additions & 0 deletions runbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

0 comments on commit 6bc6d5e

Please sign in to comment.