Improve (ahem, correct) documentation

This commit is contained in:
Chris (wolcen) Thompson 2025-10-07 22:19:45 -04:00
parent ff1ffcbed0
commit 42b2ec65b9

View file

@ -12,9 +12,10 @@ To do a build/push to our container registry, first create a token at https://gi
Then, run: Then, run:
``` ```
# finish commits and testing # finish commits and testing
git tag "0.0.X" export TAG="0.0.X"
docker build -t git.agaric.com/agaric/deploycontainer:0.0.X git tag "${TAG}"
docker tag git.agaric.com/agaric/deploycontainer:0.0.X git.agaric.com/agaric/deploycontainer:latest 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 docker push git.agaric.com/agaric/deploycontainer:latest
``` ```
Need to verify pushing latest also includes the version...not sure Need to verify pushing latest also includes the version...not sure