From cda7d977c34727d2b895138d1c89854820e5c99a Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Tue, 3 Oct 2023 03:59:38 +0000 Subject: [PATCH 1/2] docker: add docker compose command --- docker.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker.ts b/docker.ts index 24620a8..3f89630 100644 --- a/docker.ts +++ b/docker.ts @@ -17,6 +17,7 @@ class Docker implements Plugin { search: (args: string[]) => spawn(this.name, ["search", ...args]), version: (args: string[]) => spawn(this.name, ["version", ...args]), info: (args: string[]) => spawn(this.name, ["info", ...args]), + compose: (args: string[]) => spawn(this.name, ["compose", ...args]), help: () => { console.log(`Common Commands: run Create and run a new container from an image @@ -30,7 +31,8 @@ class Docker implements Plugin { logout Log out from a registry search Search Docker Hub for images version Show the Docker version information - info Display system-wide information`); + info Display system-wide information + compose Docker Compose`); return Promise.resolve(); }, }; From 9210bbc06312537c280b0d217f613c9f62b21fb3 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Tue, 3 Oct 2023 04:00:23 +0000 Subject: [PATCH 2/2] bump version code --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index 58b43e3..3098aa0 100644 --- a/main.ts +++ b/main.ts @@ -75,7 +75,7 @@ async function repl( // Learn more at https://deno.land/manual/examples/module_metadata#concepts if (import.meta.main) { - console.log("Repl v0.1.0 🚀 ✨"); + console.log("Repl v0.2.1 🚀 ✨"); console.log("exit using ctrl+c, or exit, type help for more info"); repl(); }