mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
586 B
26 lines
586 B
![]()
4 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Push locally built docker images to Quay.io and Docker Hub.
|
||
|
|
||
|
# Check that there is 2 parameters of
|
||
|
# of Wekan version number:
|
||
|
|
||
|
if [ $# -ne 2 ]
|
||
|
then
|
||
|
echo "Usage: ./push-docker.sh DOCKERBUILDTAG WEKANVERSION"
|
||
|
echo "Example: ./push-docker.sh 12345 5.70"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
docker tag $1 quay.io/wekan/wekan:v$2
|
||
|
docker push quay.io/wekan/wekan:v$2
|
||
|
|
||
|
docker tag $1 quay.io/wekan/wekan:latest
|
||
|
docker push quay.io/wekan/wekan:latest
|
||
|
|
||
|
docker tag $1 wekanteam/wekan:v$2
|
||
|
docker push wekanteam/wekan:v$2
|
||
|
|
||
|
docker tag $1 wekanteam/wekan:latest
|
||
|
docker push wekanteam/wekan:latest
|