Skip to content

Commit

Permalink
fix docker image tag typo
Browse files Browse the repository at this point in the history
  • Loading branch information
DDnK-dev committed Jun 7, 2024
1 parent 8d52493 commit 7bb4ad1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,16 @@ bench: ## runs benchmark tests
docker: ## builds docker images with the current version and latest tag
#docker buildx build --push --platform linux/amd64,linux/arm64,linux/386 -t yorkieteam/yorkie:$(YORKIE_VERSION) -t yorkieteam/yorkie:latest .
docker buildx build \
--cache-from wkd1994/yorkie:cache-linux-amd64 \
--cache-to wkd1994/yorkie:cache-linux-amd64 \
--cache-from wdk1994/yorkie:cache-linux-amd64 \
--cache-to wdk1994/yorkie:cache-linux-amd64 \
--push --platform linux/amd64 \
-t wdk1994/yorkie:$(YORKIE_VERSION) \
-t wdk1994/yorkie:latest .

docker-latest: ## builds docker images with latest tag
docker buildx build --push --platform linux/amd64 \
--cache-from wkd1994/yorkie:cache-linux-amd64 \
--cache-to wkd1994/yorkie:cache-linux-amd64 \
--cache-from wdk1994/yorkie:cache-linux-amd64 \
--cache-to wdk1994/yorkie:cache-linux-amd64 \
-t wdk1994/yorkie:latest .

swagger: ## runs swagger-ui with the yorkie api docs
Expand Down

0 comments on commit 7bb4ad1

Please sign in to comment.