mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
60 lines
1.4 KiB
Bash
Executable File
60 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set +e
|
|
|
|
echo "Usage: #./builder [notary version] [registry username] [registry password]"
|
|
if [ -z $1 ]; then
|
|
error "Please set the 'version' variable"
|
|
exit 1
|
|
fi
|
|
if [ -z $2 ]; then
|
|
error "Please set the 'photonversion' variable"
|
|
exit 1
|
|
fi
|
|
if [ -z $3 ]; then
|
|
error "Please set the 'username' variable"
|
|
exit 1
|
|
fi
|
|
|
|
|
|
VERSION="$1"
|
|
USERNAME="$2"
|
|
PASSWORD="$3"
|
|
SIGNER_PHOTONIMAGE=vmware/notary-photon:signer-$VERSION
|
|
SERVER_PHOTONIMAGE=vmware/notary-photon:server-$VERSION
|
|
|
|
set -e
|
|
|
|
# the temp folder to store binary file...
|
|
mkdir -p binary
|
|
rm -rf binary/notary-server || true
|
|
rm -rf binary/notary-signer || true
|
|
|
|
cd `dirname $0`
|
|
cur=$PWD
|
|
|
|
# the temp folder to store notary source code...
|
|
TEMP=`mktemp -d /$TMPDIR/notary.XXXXXX`
|
|
git clone -b $VERSION https://github.com/theupdateframework/notary.git $TEMP
|
|
|
|
echo 'build the notary binary bases on the golang:1.7.3...'
|
|
cp binary.Dockerfile $TEMP
|
|
cd $TEMP
|
|
docker build -f binary.Dockerfile -t notary-golang $TEMP
|
|
|
|
echo 'copy the notary binary to local...'
|
|
ID=$(docker create notary-golang)
|
|
echo $ID
|
|
cd $cur
|
|
docker cp $ID:/go/src/github.com/docker/notary/notary-server binary
|
|
docker cp $ID:/go/src/github.com/docker/notary/notary-signer binary
|
|
|
|
docker rm -f $ID
|
|
docker rmi -f notary-golang
|
|
|
|
docker build -f server.Dockerfile -t $SERVER_PHOTONIMAGE .
|
|
docker build -f signer.Dockerfile -t $SIGNER_PHOTONIMAGE .
|
|
|
|
echo 'Push image to docker hub.'
|
|
../../pushimage.sh $PHOTONIMAGE $USERNAME $PASSWORD
|