-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-bake.hcl
37 lines (34 loc) · 944 Bytes
/
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
variable "ALPINE_VERSION" { default = "latest" }
variable "S6_OVERLAY_VERSION" { default = "v3.2.0.2" }
variable "ACMEPROXY_VERSION" { default = "9d6b5c0a8471ba37dc91da0cebbfc4b3d6081c9e" }
target "docker-metadata-action" {}
target "github-metadata-action" {}
target "default" {
inherits = [
"docker-metadata-action",
"github-metadata-action",
]
args = {
ALPINE_VERSION = "${ALPINE_VERSION}"
S6_OVERLAY_VERSION = "${S6_OVERLAY_VERSION}"
ACMEPROXY_VERSION = "${ACMEPROXY_VERSION}"
}
platforms = [
"linux/amd64",
"linux/arm64"
]
}
target "dev" {
inherits = [
"docker-metadata-action",
"github-metadata-action",
]
args = {
ALPINE_VERSION = "${ALPINE_VERSION}"
S6_OVERLAY_VERSION = "${S6_OVERLAY_VERSION}"
ACMEPROXY_VERSION = "${ACMEPROXY_VERSION}"
}
tags = [
"socheatsok78/acmeproxy:dev"
]
}