Files
ollama-plus/scheduler/templates.json
T

25 lines
349 B
JSON
Raw Normal View History

2025-09-15 10:45:38 -04:00
{
"items": [
{
"name": "echo",
"image": "bash:5.2",
"command": [
"-lc"
],
"args": [
"echo \"hello $DISPLAY_NAME from $USER_ID with $PARAM_MSG\""
]
},
{
"name": "alpine-task",
"image": "alpine:3.20",
"command": [
"sh",
"-lc"
],
"args": [
"echo running && sleep 3 && echo done"
]
}
]
}