Skip to content

Commit c5141d6

Browse files
authored
Update docker build script to pull all changes (minio#19892)
1 parent 069c401 commit c5141d6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docker-buildx.sh

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
sudo sysctl net.ipv6.conf.all.disable_ipv6=0
44

5+
remote=$(git remote get-url upstream)
6+
if test "$remote" != "[email protected]:minio/minio.git"; then
7+
echo "Script requires that the 'upstream' remote is set to [email protected]:minio/minio.git"
8+
exit 1
9+
fi
10+
11+
git remote update upstream && git checkout master && git rebase upstream/master
12+
513
release=$(git describe --abbrev=0 --tags)
614

715
docker buildx build --push --no-cache \

0 commit comments

Comments
 (0)