-
-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add different platforms for docker img #417
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,7 +2,37 @@ | |||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
set -e | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
for tag in latest $(git tag --points-at | sed s/^v//); do | ||||||||||||||||||||||||||||||||||||||
docker build -t raviqqe/muffet:$tag . | ||||||||||||||||||||||||||||||||||||||
docker push raviqqe/muffet:$tag | ||||||||||||||||||||||||||||||||||||||
done | ||||||||||||||||||||||||||||||||||||||
check_buildx(){ | ||||||||||||||||||||||||||||||||||||||
if docker buildx version &>/dev/null; then | ||||||||||||||||||||||||||||||||||||||
return 0 | ||||||||||||||||||||||||||||||||||||||
fi | ||||||||||||||||||||||||||||||||||||||
if docker buildx ls &>/dev/null; then | ||||||||||||||||||||||||||||||||||||||
return 0 | ||||||||||||||||||||||||||||||||||||||
fi | ||||||||||||||||||||||||||||||||||||||
return 1 | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When it comes to make sure if buildx is installed I'd recommend you this:
Suggested change
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
build_multiarch() { | ||||||||||||||||||||||||||||||||||||||
if ! check_buildx; then | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||
echo "Error: Docker buildx is not installed or not working" | ||||||||||||||||||||||||||||||||||||||
return 1 | ||||||||||||||||||||||||||||||||||||||
fi | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
local platforms=${1:-"linux/amd64"} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
docker buildx create --name multiarch --use || true | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
echo "Building for platforms: $platforms" | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
# Build for each git tag and latest | ||||||||||||||||||||||||||||||||||||||
for tag in latest $(git tag --points-at | sed s/^v//); do | ||||||||||||||||||||||||||||||||||||||
docker buildx build \ | ||||||||||||||||||||||||||||||||||||||
--platform "$platforms" \ | ||||||||||||||||||||||||||||||||||||||
--tag raviqqe/muffet:$tag \ | ||||||||||||||||||||||||||||||||||||||
--push \ | ||||||||||||||||||||||||||||||||||||||
. | ||||||||||||||||||||||||||||||||||||||
done | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
build_multiarch "$@" | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure if building the image for multiple architectures as the only option is the best solution. Why don't you add the regular build as the default behavior in case the user doesn't have
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, check if the list of parameters is empty. if it is, go with the regular build.