-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdocker-bake.hcl
35 lines (30 loc) · 1.01 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
group "default" {
targets = ["web", "webconsole", "socat_static"]
}
target "web" {
context = "./"
dockerfile = "Dockerfile"
output = ["type=registry"]
tags = ["docker.io/paullj1/hackthearch:latest",
"docker.io/paullj1/hackthearch:3.0" ,
"docker.io/paullj1/hackthearch:3.0.0" ]
platforms = ["linux/amd64", "linux/arm64", "linux/arm/v7"]
}
target "webconsole" {
context = "./webconsole/webconsole/"
dockerfile = "Dockerfile"
output = ["type=registry"]
tags = ["docker.io/paullj1/webconsole:latest",
"docker.io/paullj1/webconsole:1.1.0"]
platforms = ["linux/amd64", "linux/arm64", "linux/arm/v7"]
}
target "socat_static" {
context = "./webconsole/socat_static/"
dockerfile = "Dockerfile"
output = ["type=registry"]
tags = ["docker.io/paullj1/socat_static:latest",
"docker.io/paullj1/socat_static:1.7",
"docker.io/paullj1/socat_static:1.7.3",
"docker.io/paullj1/socat_static:1.7.3.3"]
platforms = ["linux/amd64", "linux/arm64", "linux/arm/v7"]
}