File tree 2 files changed +21
-4
lines changed
2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 2
2
docker build -t vonwig/inotifywait .
3
3
```
4
4
5
+ ``` sh
6
+ docker buildx build \
7
+ --builder hydrobuild \
8
+ --platform linux/amd64,linux/arm64 \
9
+ --tag vonwig/inotifywait:latest \
10
+ --file Dockerfile \
11
+ --push .
12
+
13
+ ```
14
+
5
15
``` sh
6
16
docker run --rm -v " docker-prompts:/prompts" vonwig/inotifywait -e modify -e create -e delete -m -q /prompts/
7
17
```
Original file line number Diff line number Diff line change 1
1
---
2
- name : hello-docker
3
- description : run the hello-docker
2
+ name : hello from Docker
3
+ description : send a greeting from Docker
4
4
model : claude-3-5-sonnet-20241022
5
+ parameters :
6
+ type : object
7
+ properties :
8
+ greeting :
9
+ type : string
10
+ description : the greeting to send
5
11
tools :
6
12
- name : hello-docker
7
13
description : print a secret message
8
14
container :
9
15
image : busybox:latest
10
16
command :
11
17
- echo
12
- - " Hello, World! "
18
+ - " {{greeting|safe}} "
13
19
---
14
20
15
21
# prompt user
16
22
17
- Use hello world to print a secret message and then explain it to me
23
+ Ask the user what kind of a greeting they'd like to receive.
24
+ Then send a greeting from Docker and show the output.
18
25
You can’t perform that action at this time.
0 commit comments