wordpress/build/docker-bake.hcl

172 lines
4.3 KiB
HCL
Raw Permalink Normal View History

2021-09-25 03:19:05 +02:00
group "default" {
2023-04-09 21:58:01 +02:00
targets = [
"5_9_0",
"5_9_1",
"5_9_2",
"5_9_3",
"6_0_0",
"6_0_1",
"6_0_2",
"6_0_3",
"6_1_0",
"6_1_1",
"6_2_0"
]
}
target "build-dockerfile" {
dockerfile = "Dockerfile"
}
target "build-platforms" {
platforms = ["linux/amd64", "linux/armhf", "linux/aarch64"]
}
target "build-common" {
pull = true
2021-09-25 03:19:05 +02:00
}
2023-04-09 21:46:50 +02:00
variable "REGISTRY_CACHE" {
default = "docker.io/nlss/wordpress-cache"
}
2023-04-09 21:58:01 +02:00
######################
# Define the functions
######################
# Get the arguments for the build
function "get-args" {
params = [version]
result = {
WP_VERSION = version
}
}
# Get the cache-from configuration
function "get-cache-from" {
params = [version]
result = [
"type=gha,scope=${version}_${BAKE_LOCAL_PLATFORM}",
2023-04-09 21:46:50 +02:00
"type=registry,ref=${REGISTRY_CACHE}:${sha1("${version}-${BAKE_LOCAL_PLATFORM}")}"
]
}
# Get the cache-to configuration
function "get-cache-to" {
params = [version]
result = [
"type=gha,mode=max,scope=${version}_${BAKE_LOCAL_PLATFORM}",
2023-04-11 12:59:28 +02:00
"type=registry,mode=max,ref=${REGISTRY_CACHE}:${sha1("${version}-${BAKE_LOCAL_PLATFORM}")}"
]
}
# Get list of image tags and registries
# Takes a version and a list of extra versions to tag
# eg. get-tags("5.9.0", ["5", "5.9", "latest"])
function "get-tags" {
params = [version, extra_versions]
result = concat(
[
"docker.io/nlss/wordpress:${version}",
"ghcr.io/n0rthernl1ghts/wordpress:${version}"
],
flatten([
for extra_version in extra_versions : [
"docker.io/nlss/wordpress:${extra_version}",
"ghcr.io/n0rthernl1ghts/wordpress:${extra_version}"
]
])
)
}
2023-04-09 21:58:01 +02:00
##########################
# Define the build targets
##########################
2021-09-25 03:19:05 +02:00
target "5_9_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("5.9.0")
cache-to = get-cache-to("5.9.0")
tags = get-tags("5.9.0", [])
args = get-args("5.9.0")
2022-02-03 19:50:56 +01:00
}
2022-03-22 19:19:48 +01:00
target "5_9_1" {
2023-04-06 21:32:28 +02:00
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("5.9.1")
cache-to = get-cache-to("5.9.1")
tags = get-tags("5.9.1", [])
args = get-args("5.9.1")
2022-03-22 19:25:03 +01:00
}
target "5_9_2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("5.9.2")
cache-to = get-cache-to("5.9.2")
tags = get-tags("5.9.2", [])
args = get-args("5.9.2")
2022-05-25 19:21:09 +02:00
}
target "5_9_3" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("5.9.3")
cache-to = get-cache-to("5.9.3")
tags = get-tags("5.9.3", ["5", "5.9"])
args = get-args("5.9.3")
2022-07-25 23:38:43 +02:00
}
target "6_0_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.0.0")
cache-to = get-cache-to("6.0.0")
tags = get-tags("6.0.0", [])
args = get-args("6.0.0")
2022-07-25 23:42:46 +02:00
}
target "6_0_1" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.0.1")
cache-to = get-cache-to("6.0.1")
tags = get-tags("6.0.1", [])
args = get-args("6.0.1")
2022-09-10 03:39:04 +02:00
}
target "6_0_2" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.0.2")
cache-to = get-cache-to("6.0.2")
tags = get-tags("6.0.2", [])
args = get-args("6.0.2")
2022-11-02 21:33:34 +01:00
}
target "6_0_3" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.0.3")
cache-to = get-cache-to("6.0.3")
tags = get-tags("6.0.3", ["6.0"])
args = get-args("6.0.3")
2022-11-02 21:37:13 +01:00
}
target "6_1_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.1.0")
cache-to = get-cache-to("6.1.0")
tags = get-tags("6.1.0", [])
args = get-args("6.1.0")
2023-01-19 23:48:13 +01:00
}
target "6_1_1" {
2023-04-06 21:32:28 +02:00
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.1.1")
cache-to = get-cache-to("6.1.1")
2023-04-08 19:46:25 +02:00
tags = get-tags("6.1.1", ["6.1"])
args = get-args("6.1.1")
2023-04-02 20:32:47 +02:00
}
target "6_2_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("6.2.0")
cache-to = get-cache-to("6.2.0")
tags = get-tags("6.2.0", ["6", "6.2", "latest"])
args = get-args("6.2.0")
2022-03-22 19:19:48 +01:00
}