From 42b2ec65b9fe75fcc364d482c8af1b7dadd01456 Mon Sep 17 00:00:00 2001 From: "Chris (wolcen) Thompson" Date: Tue, 7 Oct 2025 22:19:45 -0400 Subject: [PATCH] Improve (ahem, correct) documentation --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e9bad0f..1f62c0b 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,10 @@ To do a build/push to our container registry, first create a token at https://gi Then, run: ``` # finish commits and testing -git tag "0.0.X" -docker build -t git.agaric.com/agaric/deploycontainer:0.0.X -docker tag git.agaric.com/agaric/deploycontainer:0.0.X git.agaric.com/agaric/deploycontainer:latest +export TAG="0.0.X" +git tag "${TAG}" +docker build -t git.agaric.com/agaric/deploycontainer:${TAG} . +docker tag git.agaric.com/agaric/deploycontainer:${TAG} git.agaric.com/agaric/deploycontainer:latest docker push git.agaric.com/agaric/deploycontainer:latest ``` Need to verify pushing latest also includes the version...not sure