-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Major rewrite with just breaking changes
- Loading branch information
1 parent
f91c3b9
commit e334d4c
Showing
44 changed files
with
1,181 additions
and
1,136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,17 @@ | ||
IMAGE=quiq/docker-registry-ui | ||
IMAGE=quiq/registry-ui | ||
VERSION=`sed -n '/version/ s/.* = //;s/"//g p' version.go` | ||
NOCACHE=--no-cache | ||
|
||
.DEFAULT: buildx | ||
.DEFAULT_GOAL := dummy | ||
|
||
buildx: | ||
@docker build -t ${IMAGE}:${VERSION} . | ||
dummy: | ||
@echo "Nothing to do here." | ||
|
||
publish: | ||
@docker buildx build --platform linux/amd64,linux/arm64 -t ${IMAGE}:${VERSION} -t ${IMAGE}:latest --push . | ||
build: | ||
docker build ${NOCACHE} -t ${IMAGE}:${VERSION} . | ||
|
||
public: | ||
docker buildx build ${NOCACHE} --platform linux/amd64,linux/arm64 -t ${IMAGE}:${VERSION} -t ${IMAGE}:latest --push . | ||
|
||
test: | ||
docker buildx build ${NOCACHE} --platform linux/amd64 -t docker.quiq.im/registry-ui:test -t docker.quiq.sh/registry-ui:test --push . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.