forked from prodrigestivill/docker-postgres-backup-local
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-bake.hcl
90 lines (75 loc) · 2.17 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
86
87
88
89
90
group "default" {
targets = ["debian-latest", "alpine-latest", "debian-11", "debian-10", "debian-9.6", "debian-9.5", "debian-9.4", "alpine-11", "alpine-10", "alpine-9.6", "alpine-9.5", "alpine-9.4"]
}
target "common" {
platforms = ["linux/amd64", "linux/arm64", "linux/arm/v7"]
args = {"GOCRONVER" = "v0.0.9"}
}
target "debian" {
inherits = ["common"]
dockerfile = "Dockerfile-debian"
}
target "alpine" {
inherits = ["common"]
dockerfile = "Dockerfile-alpine"
}
target "debian-latest" {
inherits = ["debian"]
args = {"BASETAG" = "12"}
tags = ["prodrigestivill/postgres-backup-local:latest", "prodrigestivill/postgres-backup-local:12"]
}
target "alpine-latest" {
inherits = ["alpine"]
args = {"BASETAG" = "12-alpine"}
tags = ["prodrigestivill/postgres-backup-local:alpine", "prodrigestivill/postgres-backup-local:12-alpine"]
}
target "debian-11" {
inherits = ["debian"]
args = {"BASETAG" = "11"}
tags = ["prodrigestivill/postgres-backup-local:11"]
}
target "alpine-11" {
inherits = ["alpine"]
args = {"BASETAG" = "11-alpine"}
tags = ["prodrigestivill/postgres-backup-local:11-alpine"]
}
target "debian-10" {
inherits = ["debian"]
args = {"BASETAG" = "10"}
tags = ["prodrigestivill/postgres-backup-local:10"]
}
target "alpine-10" {
inherits = ["alpine"]
args = {"BASETAG" = "10-alpine"}
tags = ["prodrigestivill/postgres-backup-local:10-alpine"]
}
target "debian-9.6" {
inherits = ["debian"]
args = {"BASETAG" = "9.6"}
tags = ["prodrigestivill/postgres-backup-local:9.6"]
}
target "alpine-9.6" {
inherits = ["alpine"]
args = {"BASETAG" = "9.6-alpine"}
tags = ["prodrigestivill/postgres-backup-local:9.6-alpine"]
}
target "debian-9.5" {
inherits = ["debian"]
args = {"BASETAG" = "9.5"}
tags = ["prodrigestivill/postgres-backup-local:9.5"]
}
target "alpine-9.5" {
inherits = ["alpine"]
args = {"BASETAG" = "9.5-alpine"}
tags = ["prodrigestivill/postgres-backup-local:9.5-alpine"]
}
target "debian-9.4" {
inherits = ["debian"]
args = {"BASETAG" = "9.4"}
tags = ["prodrigestivill/postgres-backup-local:9.4"]
}
target "alpine-9.4" {
inherits = ["alpine"]
args = {"BASETAG" = "9.4-alpine"}
tags = ["prodrigestivill/postgres-backup-local:9.4-alpine"]
}