Improve (ahem, correct) documentation
This commit is contained in:
parent
ff1ffcbed0
commit
42b2ec65b9
1 changed files with 4 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue