From 8a45a3c506a1dfbf06d670784ec39318e2d6ee8e Mon Sep 17 00:00:00 2001 From: tahsina13 Date: Thu, 9 Apr 2026 13:35:08 -0400 Subject: [PATCH 1/2] readme fix --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 991e074..c78faf3 100644 --- a/README.md +++ b/README.md @@ -243,7 +243,11 @@ Example curl (create session): ```sh curl -X POST http://localhost:8080/api/sessions \ -H "Content-Type: application/json" \ - -d '{"image":"nginx:stable","command":"nginx -g \'daemon off;\'","ttl":60}' + -d "{ + \"image\": \"nginx:latest\", + \"command\": \"nginx -g 'daemon off;'\", + \"ttl\": \"24h\" + }" ``` ### Stop Session From faad95cb171d8114387145c7335cb5b670ea2860 Mon Sep 17 00:00:00 2001 From: tahsina13 Date: Thu, 9 Apr 2026 13:35:55 -0400 Subject: [PATCH 2/2] more readme fix= --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c78faf3..0b9afa1 100644 --- a/README.md +++ b/README.md @@ -306,7 +306,7 @@ Response (application/json): array of Session objects. Each Session has the shap "spec": { "image": "", "command": "", - "ttl": + "ttl": "" } } ```