Skip to content

Commit

Permalink
Add new releases 2.0.0, 2.1.0 supporting NGINX Unit 1.31.x and 1.32.x…
Browse files Browse the repository at this point in the history
…. PHP7.4 support is dropped.
  • Loading branch information
xZero707 committed May 12, 2024
1 parent 42498a1 commit ec35eac
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions build/docker-bake.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group "default" {
targets = ["1_0_0", "1_0_0_PHP7_4", "1_1_0", "1_1_0_PHP7_4"]
targets = ["1_0_0", "1_0_0_PHP7_4", "1_1_0", "1_1_0_PHP7_4", "2_0_0", "2_1_0"]
}

target "build-dockerfile" {
Expand Down Expand Up @@ -91,7 +91,7 @@ target "1_1_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("1.1.0")
cache-to = get-cache-to("1.1.0")
tags = get-tags("1.1.0", ["1.1", "latest"])
tags = get-tags("1.1.0", ["1.1", "1"])
args = get-args("6.1.1", "8.1", "1.30.0")
}

Expand All @@ -101,4 +101,20 @@ target "1_1_0_PHP7_4" {
cache-to = get-cache-to("1.1.0-PHP7.4")
tags = get-tags("1.1.0-PHP7.4", ["PHP7.4", "1.1-PHP7.4", "latest-PHP7.4"])
args = get-args("6.1.1", "7.4", "1.30.0")
}

target "2_0_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("2.0.0")
cache-to = get-cache-to("2.0.0")
tags = get-tags("2.0.0", ["2.0"])
args = get-args("6.1.1", "8.1", "1.31.1")
}

target "2_1_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"]
cache-from = get-cache-from("2.1.0")
cache-to = get-cache-to("2.1.0")
tags = get-tags("2.1.0", ["latest", "2.1", "2"])
args = get-args("6.1.1", "8.1", "1.32.1")
}

0 comments on commit ec35eac

Please sign in to comment.