-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
64 lines (44 loc) · 1.21 KB
/
Makefile
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
compose = docker-compose -f
alpine-single = docker-compose.alpine-single.yml
alpine = docker-compose.alpine.yml
buster-single = docker-compose.buster-single.yml
buster = docker-compose.buster.yml
distroless = docker-compose.distroless.yml
scratch = docker-compose.scratch.yml
build-alpine-single:
${compose} ${alpine-single} build
start-alpine-single:
${compose} ${alpine-single} up
stop-alpine-single:
${compose} ${alpine-single} down
build-alpine:
${compose} ${alpine} build
start-alpine:
${compose} ${alpine} up
stop-alpine:
${compose} ${alpine} down
build-buster-single:
${compose} ${buster-single} build
start-buster-single:
${compose} ${buster-single} up
stop-buster-single:
${compose} ${buster-single} down
build-buster:
${compose} ${buster} build
start-buster:
${compose} ${buster} up
stop-buster:
${compose} ${buster} down
build-distroless:
${compose} ${distroless} build
start-distroless:
${compose} ${distroless} up
stop-distroless:
${compose} ${distroless} down
build-scratch:
${compose} ${scratch} build
start-scratch:
${compose} ${scratch} up
stop-scratch:
${compose} ${scratch} down
build-all: build-alpine-single build-alpine build-buster-single build-buster build-distroless build-scratch