mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 07:56:12 +00:00
fix shellcheck warnings on download_community remove gzip chmod from dockerfile to script itself better error handling if filename returns empty apply fix to match download archives for both amd64 and all
16 lines
344 B
Bash
Executable File
16 lines
344 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -lt 2 ]
|
|
then
|
|
echo "Usage: master-push.sh core|webapp version"
|
|
echo "Example: master-push.sh core 3.4.17.1565plus895.1"
|
|
exit 1
|
|
fi
|
|
|
|
component=$1
|
|
version=$2
|
|
|
|
docker push zokradonh/kopano_${component}:latest
|
|
docker push zokradonh/kopano_${component}:latest-master
|
|
docker push zokradonh/kopano_${component}:$version
|