-
Notifications
You must be signed in to change notification settings - Fork 35
/
docker-bake.hcl
85 lines (71 loc) · 1.51 KB
/
docker-bake.hcl
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
###################
### Variables
###################
variable REGISTRY {
default = ""
}
# Comma delimited list of tags
variable TAGS {
default = "latest"
}
variable CI {
default = false
}
###################
### Functions
###################
function "get_tags" {
params = [image]
result = [for tag in split(",", TAGS) : join("/", compact([REGISTRY, "${image}:${tag}"]))]
}
function "get_tags_suffix" {
params = [image, suffix]
result = [for tag in split(",", TAGS) : join("/", compact([REGISTRY, replace("${image}:${tag}-${suffix}", "latest-", "")]))]
}
function "get_platforms_multiarch" {
params = []
result = CI ? ["linux/amd64", "linux/arm/v6", "linux/arm/v7", "linux/arm64"] : []
}
function "get_output" {
params = []
result = CI ? ["type=registry"] : ["type=docker"]
}
###################
### Groups
###################
group "default" {
targets = [
"nats-box",
"nats-box-nonroot"
]
}
###################
### Targets
###################
target "nats-box" {
dockerfile = "Dockerfile"
args = {
VERSION_NATS = "0.1.5"
VERSION_NATS_TOP = "0.6.2"
VERSION_NSC = "2.10.0"
}
platforms = get_platforms_multiarch()
tags = get_tags("nats-box")
output = get_output()
}
target "nats-box-nonroot" {
contexts = {
nats-box = "target:nats-box"
}
inherits = ["nats-box"]
args = {
USER = "nats"
}
dockerfile-inline = <<EOT
FROM nats-box
ARG USER
USER $USER:$USER
WORKDIR /home/nats
EOT
tags = get_tags_suffix("nats-box", "nonroot")
}