-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-bake.hcl
48 lines (40 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
variable "OWNER" {
default = "visualon"
}
variable "FILE" {}
variable "TAG" {
default = "latest"
}
group "default" {
targets = ["build_ghcr", "build_docker"]
}
group "build" {
targets = ["build_ghcr", "build_docker", "push_ghcr"]
}
group "push" {
targets = ["push_ghcr"]
}
group "test" {
targets = ["build_docker"]
}
target "settings" {
context = "./linux/${FILE}"
inherits = ["settings"]
cache-from = ["type=registry,ref=ghcr.io/${OWNER}/cache:${replace(FILE, "/", "-")}", "type=registry,ref=ghcr.io/${OWNER}/cache:${replace(FILE, "/", "-")}-${TAG}"]
}
target "build_ghcr" {
inherits = ["settings"]
output = ["type=registry"]
tags = ["ghcr.io/${OWNER}/cache:${replace(FILE, "/", "-")}-${TAG}"]
cache-to = ["type=inline,mode=max"]
}
target "build_docker" {
inherits = ["settings"]
output = ["type=docker"]
tags = ["ghcr.io/${OWNER}/${FILE}:${TAG}"]
}
target "push_ghcr" {
inherits = ["settings"]
output = ["type=registry"]
tags = ["ghcr.io/${OWNER}/${FILE}:${TAG}"]
}