-
Notifications
You must be signed in to change notification settings - Fork 2
/
docker-bake.hcl
59 lines (48 loc) · 1.14 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
variable "PREFIX" {
default = "docker.io"
}
target "base" {
platforms = ["linux/amd64", "linux/arm64"]
}
target "mysql-nofont" {
inherits = ["base"]
target = "mysql"
tags = ["${PREFIX}/schemaspy:6.1.0-mysql"]
}
target "mariadb-nofont" {
inherits = ["base"]
target = "mariadb"
tags = ["${PREFIX}/schemaspy:6.1.0-mariadb"]
}
target "postgresql-nofont" {
inherits = ["base"]
target = "postgresql"
tags = ["${PREFIX}/schemaspy:6.1.0-postgresql"]
}
target "mysql-cjk" {
inherits = ["base"]
target = "mysql-cjk"
tags = ["${PREFIX}/schemaspy:6.1.0-mysql-cjk"]
}
target "mariadb-cjk" {
inherits = ["base"]
target = "mariadb-cjk"
tags = ["${PREFIX}/schemaspy:6.1.0-mariadb-cjk"]
}
target "postgresql-cjk" {
inherits = ["base"]
target = "postgresql-cjk"
tags = ["${PREFIX}/schemaspy:6.1.0-postgresql-cjk"]
}
group "mysql" {
targets = ["mysql-nofont", "mysql-cjk"]
}
group "mariadb" {
targets = ["mariadb-nofont", "mariadb-cjk"]
}
group "postgresql" {
targets = ["postgresql-nofont", "postgresql-cjk"]
}
group "default" {
targets = ["mysql", "mariadb", "postgresql"]
}