Added hello-go example to make example image faster.

This commit is contained in:
Travis Reeder
2016-10-12 00:08:22 -07:00
parent df3d5b48ce
commit e85c7560c3
17 changed files with 80 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
This is a worker that just echoes the "input" param in the payload.
eg:
This input:
```json
{
"name": "Johnny Utah"
}
```
Will output:
```
Hello Johnny Utah!
```
## Try it
```
echo '{"name":"Johnny"}' | docker run --rm -i iron/hello
```