0520668 Merge update from Common 4497566 Squashed '.gitlab/' changes from 731ada6..cf41f2e2de53deRemove .commona85a7aaMerge branch 'common-subtree'a074005Add '.gitlab/' from commit '731ada6a3d65b2347ccf204cfe09ee278a4f0594'422f4d4remove .gitlab subtree731ada6Merge branch 'make-update-fixes' into 'main'c3e6d73Switch to "subtree split" push strategy3c91292Make user stash their own damn changesd86b505Add PROJECT_NAME and VERSION9d0c9c6Update README with "common" remote30fb8c2Merge branch 'docker-buidlx-overhaul' into 'main'fd96b3fMerge branch 'git-release' into 'main'a6053edAdd make git-release3563c5cAdd make docker-release40a217bUse buildx to create multi-arch images5e2bc5fSwitch to container-builder buildx platforma5aa0caAutomated release for version 1.0.265b3a84make subtree "split" overhauld181d45Overhaul for get-server v. 2.0.09eed509Don't squash on pullb07a2c0Run update after make-push22a952dRemove warning from make-update0f6eeb7Add make-stash-drop commandf81d846Only pop stash if changesafed93fAdd warning to make-update and make-push6239af7Ignore git stash pop failures2f76759Add make-push command66b4fdbIgnore subtree pull failuresda69418Switch to url-based subtree with `make-update`ba12c92Remove docker-run74a4a4eTransition to .gitlab prefix3e8ca71Add chart-release to truenas.makefile4146777Add helm.makefile8a52a21Switch to multi-makefile strategyf187522init git-subtree-dir: minecraft git-subtree-split: 05206686ad84ad388c98578becfc5cfe3a13fdb4
30 lines
726 B
Makefile
30 lines
726 B
Makefile
.PHONY: docker-init
|
|
docker-init:
|
|
@touch VERSION
|
|
@touch IMAGE
|
|
|
|
.PHONY: buildx-context
|
|
buildx-context:
|
|
docker buildx create --name container-builder --use --platform linux/amd64,linux/arm64
|
|
|
|
.PHONY: buildx-clear
|
|
buildx-clear:
|
|
docker buildx rm container-builder
|
|
|
|
.PHONY: build
|
|
build:
|
|
docker buildx build --load . -t $(IMAGE)
|
|
@docker buildx build --load . -t $(IMAGE_LATEST)
|
|
|
|
.PHONY: push
|
|
push:
|
|
-make buildx-clear
|
|
@make buildx-context
|
|
docker buildx build --platform linux/amd64,linux/arm64 --push . -t $(IMAGE)
|
|
@docker buildx build --platform linux/amd64,linux/arm64 --push . -t $(IMAGE_LATEST)
|
|
|
|
.PHONY: docker-release
|
|
docker-release:
|
|
@yq e ".services.minecraft.image = \"$(IMAGE)\"" -i docker-compose.yaml
|
|
@make push
|