1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
CONMAN=sudo docker
REGISTRY=registry.intra.dominic-ricottone.com
IMAGE=postfix
TAG_TLS_ALL=latest
TAG_TLS_IN=tls-in
TAG_TLS_OUT=tls-out
image: image-tls-all image-tls-in image-tls-out
image-tls-all:
$(CONMAN) buildx build --push --progress=plain \
--platform linux/arm64,linux/amd64 \
--tag $(REGISTRY)/$(IMAGE):$(TAG_TLS_ALL) \
.
image-tls-in:
$(CONMAN) buildx build --push --progress=plain \
--platform linux/arm64,linux/amd64 \
--tag $(REGISTRY)/$(IMAGE):$(TAG_TLS_IN) \
. -f Dockerfile.tls-in
image-tls-out:
$(CONMAN) buildx build --push --progress=plain \
--platform linux/arm64,linux/amd64 \
--tag $(REGISTRY)/$(IMAGE):$(TAG_TLS_OUT) \
. -f Dockerfile.tls-out
.PHONY: image