blob: 2a1e3a29da836a963b014cf9b7ba890c831f1da6 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Various one-liners which I'm too lazy to remember.
# Basically a collection of really small shell scripts.
PROJECT = fr24feed
# Use BuildKit, which is required:
export DOCKER_BUILDKIT = 1
# Enable buildx support:
export DOCKER_CLI_EXPERIMENTAL = enabled
# Enable BuildKit in docker-compose (requires 1.25.0 or higher):
export COMPOSE_DOCKER_CLI_BUILD = 1
# Target platforms (used by buildx):
platforms = linux/i386,linux/amd64,linux/armhf
# One of the latest (at the moment) Compose versions that supports BuildKit:
compose_version = 1.25.3
# Docker Hub credentials:
DOCKER_USERNAME = egortensin
all: build
login:
ifndef DOCKER_PASSWORD
$(error Please define DOCKER_PASSWORD)
endif
@echo "$(DOCKER_PASSWORD)" | docker login --username "$(DOCKER_USERNAME)" --password-stdin
# Quickly install a newer Compose version:
install-compose:
curl -L "https://github.com/docker/compose/releases/download/$(compose_version)/docker-compose-$$(uname -s)-$$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
compose: install-compose
# Re-register binfmt_misc formats with the F flag (required i.e. on Bionic):
fix-binfmt:
docker run --rm --privileged docker/binfmt:66f9012c56a8316f9244ffd7622d7c21c1f6f28d
binfmt: fix-binfmt
# `docker build` has week support for multiarch repos (you need to use multiple
# Dockerfile's, create a manifest manually, etc.), so it's only here for
# testing purposes, and native builds.
docker-build/%:
ifndef FORCE
$(warning Consider using `docker buildx` instead)
endif
docker build -t "$(DOCKER_USERNAME)/$*" "$*/"
docker-build: docker-build/dump1090 docker-build/fr24feed
# `docker-compose build` has the same problems as `docker build`.
compose-build:
ifndef FORCE
$(warning Consider using `docker buildx` instead)
endif
docker-compose build
# The simple way to build multiarch repos.
builder/create: fix-binfmt
docker buildx create --use --name "$(PROJECT)_builder"
builder/rm:
docker buildx rm "$(PROJECT)_builder"
buildx/%:
docker buildx build -t "$(DOCKER_USERNAME)/$*" --platform "$(platforms)" "$*/"
buildx: buildx/dump1090 buildx/fr24feed
# Build natively by default.
build: compose-build
# `docker push` would replace the multiarch repo with a single image by default
# (you'd have to create a manifest and push it instead), so it's only here for
# testing purposes.
check-docker-push:
ifndef FORCE
$(error Please do not use `docker push`)
endif
docker-push/%: check-docker-push docker-build/%
docker push "$(DOCKER_USERNAME)/$*"
docker-push: check-docker-push docker-push/dump1090 docker-push/fr24feed
# `docker-compose push` has the same problems as `docker push`.
check-compose-push:
ifndef FORCE
$(error Please do not use `docker-compose push`)
endif
compose-push: check-compose-push compose-build
docker-compose push
# The simple way to push multiarch repos.
buildx-push/%:
docker buildx build -t "$(DOCKER_USERNAME)/$*" --platform "$(platforms)" --push "$*/"
buildx-push: buildx-push/dump1090 buildx-push/fr24feed
# buildx is used by default.
push: buildx-push
pull:
docker-compose pull
up:
docker-compose up -d
down:
docker-compose down --volumes
clean:
docker system prune --all --force --volumes
.PHONY: all login install-compose compose fix-binfmt binfmt docker-build compose-build builder/create builder/rm buildx build check-docker-push docker-push check-compose-push compose-push buildx-push push pull up down clean
|