From e00e5981f347f07ceed11bb2c73f445367235830 Mon Sep 17 00:00:00 2001 From: Thomas von Dein Date: Thu, 16 Jul 2026 23:20:15 +0200 Subject: [PATCH] add some docker wrappers --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index 746a571..69b273d 100644 --- a/Makefile +++ b/Makefile @@ -110,3 +110,12 @@ profile: buildlocal ./esctl api ls --profile-file cpu.profile go tool pprof -text esctl cpu.profile go tool pprof --http localhost:8888 ./esctl cpu.profile + +docker-up: + make -C t up + +docker-waitup: + make -C t up + +docker-down: + make -C t down