15 lines
437 B
Bash
15 lines
437 B
Bash
#!/bin/bash
|
|
|
|
curl --header "Content-Type: application/json" \
|
|
--header "X-Api-Key: $API_KEY" \
|
|
--header "X-Api-Secret: $API_SECRET" \
|
|
--data '{ "stack": "demo-immich" }' \
|
|
https://demo.komo.do/execute/StopStack
|
|
|
|
sleep 3s
|
|
|
|
curl --header "Content-Type: application/json" \
|
|
--header "X-Api-Key: $API_KEY" \
|
|
--header "X-Api-Secret: $API_SECRET" \
|
|
--data '{ "stack": "demo-immich" }' \
|
|
https://demo.komo.do/execute/DeployStack |