2021-09-25 03:19:05 +02:00
|
|
|
group "default" {
|
2023-01-20 17:03:12 +01: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"]
|
2021-09-25 03:19:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
target "build-dockerfile" {
|
|
|
|
dockerfile = "Dockerfile"
|
|
|
|
}
|
|
|
|
|
|
|
|
target "build-platforms" {
|
2022-11-02 22:04:39 +01:00
|
|
|
platforms = ["linux/amd64", "linux/armhf", "linux/aarch64"]
|
2021-09-25 03:19:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
target "build-common" {
|
|
|
|
pull = true
|
|
|
|
}
|
|
|
|
|
2022-05-25 19:55:09 +02:00
|
|
|
target "5_9_0" {
|
2022-02-03 19:50:56 +01:00
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-03-22 19:19:48 +01:00
|
|
|
tags = ["docker.io/nlss/wordpress:5.9.0"]
|
2022-02-03 19:50:56 +01:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "5.9.0"
|
|
|
|
}
|
|
|
|
}
|
2022-03-22 19:19:48 +01:00
|
|
|
|
2022-05-25 19:55:09 +02:00
|
|
|
target "5_9_1" {
|
2022-03-22 19:19:48 +01:00
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-03-22 19:25:03 +01:00
|
|
|
tags = ["docker.io/nlss/wordpress:5.9.1"]
|
2022-03-22 19:19:48 +01:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "5.9.1"
|
|
|
|
}
|
2022-03-22 19:25:03 +01:00
|
|
|
}
|
|
|
|
|
2022-05-25 19:55:09 +02:00
|
|
|
target "5_9_2" {
|
2022-03-22 19:25:03 +01:00
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-05-25 19:21:09 +02:00
|
|
|
tags = ["docker.io/nlss/wordpress:5.9.2"]
|
2022-03-22 19:25:03 +01:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "5.9.2"
|
|
|
|
}
|
2022-05-25 19:21:09 +02:00
|
|
|
}
|
|
|
|
|
2022-05-25 19:55:09 +02:00
|
|
|
target "5_9_3" {
|
2022-05-25 19:21:09 +02:00
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-11-02 21:40:14 +01:00
|
|
|
tags = ["docker.io/nlss/wordpress:5", "docker.io/nlss/wordpress:5.9", "docker.io/nlss/wordpress:5.9.3"]
|
2022-05-25 19:21:09 +02:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "5.9.3"
|
|
|
|
}
|
2022-07-25 23:38:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
target "6_0_0" {
|
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-07-25 23:42:46 +02:00
|
|
|
tags = ["docker.io/nlss/wordpress:6.0.0"]
|
2022-07-25 23:38:43 +02:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "6.0.0"
|
|
|
|
}
|
2022-07-25 23:42:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
target "6_0_1" {
|
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-09-10 03:39:04 +02:00
|
|
|
tags = ["docker.io/nlss/wordpress:6.0.1"]
|
2022-07-25 23:42:46 +02:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "6.0.1"
|
|
|
|
}
|
2022-09-10 03:39:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
target "6_0_2" {
|
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-11-02 21:33:34 +01:00
|
|
|
tags = ["docker.io/nlss/wordpress:6.0.2"]
|
2022-09-10 03:39:04 +02:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "6.0.2"
|
|
|
|
}
|
2022-11-02 21:33:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
target "6_0_3" {
|
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2022-11-02 21:37:13 +01:00
|
|
|
tags = ["docker.io/nlss/wordpress:6.0.3"]
|
2022-11-02 21:33:34 +01:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "6.0.3"
|
|
|
|
}
|
2022-11-02 21:37:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
target "6_1_0" {
|
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
2023-01-19 23:48:13 +01:00
|
|
|
tags = ["docker.io/nlss/wordpress:6.1.0"]
|
2022-11-02 21:37:13 +01:00
|
|
|
args = {
|
|
|
|
WP_VERSION = "6.1.0"
|
|
|
|
}
|
2023-01-19 23:48:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
target "6_1_1" {
|
|
|
|
inherits = ["build-dockerfile", "build-platforms", "build-common"]
|
|
|
|
tags = ["docker.io/nlss/wordpress:6", "docker.io/nlss/wordpress:6.1", "docker.io/nlss/wordpress:6.1.1", "docker.io/nlss/wordpress:latest"]
|
|
|
|
args = {
|
|
|
|
WP_VERSION = "6.1.1"
|
|
|
|
}
|
2022-03-22 19:19:48 +01:00
|
|
|
}
|