From b72229786eb0eac03ef75e6be95041f07d982d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Sun, 15 Mar 2026 16:33:01 -0700 Subject: [PATCH] fix: derive default docker image name from repo name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use the git repo directory name as the default image name instead of hardcoding osapi-justfiles. Each consuming project gets its own name automatically (e.g. osapi, nats-client). 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- docker.just | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker.just b/docker.just index 8790277..5cc6d2b 100644 --- a/docker.just +++ b/docker.just @@ -16,7 +16,7 @@ # DEALINGS IN THE SOFTWARE. # Docker recipes for osapi-io projects. -image_name := env("JUST_DOCKER_IMAGE", "osapi-justfiles") +image_name := env("JUST_DOCKER_IMAGE", `basename $(git rev-parse --show-toplevel)`) image_tag := env("JUST_DOCKER_TAG", "latest") # --- Build ---