Skip to content

Commit

Permalink
add note to install_and_configure.md re docker push to dockerhub
Browse files Browse the repository at this point in the history
  • Loading branch information
Don-Isdale committed Nov 28, 2024
1 parent a462b9f commit 4acddde
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions doc/adminGuides/install_and_configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,15 @@ docker tag $image $baseName:latest
docker image inspect $image | jq '.[] | .RepoTags'
```

Push the built image to dockerhub
```
app=pretzel
baseName=plantinformaticscollaboration/$app
# $PRETZEL_VERSION as defined above
echo PRETZEL_VERSION=$PRETZEL_VERSION
for tag in $PRETZEL_VERSION latest; do docker push $baseName:$tag; done
```



---

0 comments on commit 4acddde

Please sign in to comment.