Update btp-manual.md

Fix the missing variable $TAG in the snippet that cause the push to registry failed.
This commit is contained in:
Brice GG
2021-08-01 12:40:34 +00:00
committed by GitHub
parent 4df547d9b1
commit a9d84b01d8

View File

@@ -14,7 +14,7 @@
export TAG=v0.1
for SERVICE in hasher rng webui worker; do
docker build -t $REGISTRY/$SERVICE:$TAG ./$SERVICE
docker push $REGISTRY/$SERVICE
docker push $REGISTRY/$SERVICE:$TAG
done
```