diff --git a/bake.hcl b/bake.hcl index 11a40d6c..7c969d62 100644 --- a/bake.hcl +++ b/bake.hcl @@ -10,27 +10,39 @@ #------------------------------------ test ----------------------------------- group "test" { - targets=["enterprise_debian11_amd64", "federal_debian11_amd64", "community_debian11_amd64"] + targets=["enterprise_debian11_amd64", "enterprise_debian11_arm64", "federal_debian11_amd64", "community_debian11_amd64", "community_debian11_arm64"] } target "enterprise_debian11_amd64" { - tags=["aerospike/aerospike-server-enterprise-amd64:6.1.0.32", "aerospike/aerospike-server-enterprise-amd64:latest"] + tags=["aerospike/aerospike-server-enterprise-amd64:6.2.0.27", "aerospike/aerospike-server-enterprise-amd64:latest"] platforms=["linux/amd64"] context="./enterprise/debian11" } +target "enterprise_debian11_arm64" { + tags=["aerospike/aerospike-server-enterprise-arm64:6.2.0.27", "aerospike/aerospike-server-enterprise-arm64:latest"] + platforms=["linux/arm64"] + context="./enterprise/debian11" +} + target "federal_debian11_amd64" { - tags=["aerospike/aerospike-server-federal-amd64:6.1.0.32", "aerospike/aerospike-server-federal-amd64:latest"] + tags=["aerospike/aerospike-server-federal-amd64:6.2.0.27", "aerospike/aerospike-server-federal-amd64:latest"] platforms=["linux/amd64"] context="./federal/debian11" } target "community_debian11_amd64" { - tags=["aerospike/aerospike-server-community-amd64:6.1.0.32", "aerospike/aerospike-server-community-amd64:latest"] + tags=["aerospike/aerospike-server-community-amd64:6.2.0.27", "aerospike/aerospike-server-community-amd64:latest"] platforms=["linux/amd64"] context="./community/debian11" } +target "community_debian11_arm64" { + tags=["aerospike/aerospike-server-community-arm64:6.2.0.27", "aerospike/aerospike-server-community-arm64:latest"] + platforms=["linux/arm64"] + context="./community/debian11" +} + #------------------------------------ push ----------------------------------- group "push" { @@ -38,20 +50,20 @@ group "push" { } target "enterprise_debian11" { - tags=["aerospike/aerospike-server-enterprise:6.1.0.32", "aerospike/aerospike-server-enterprise:6.1.0.32_2"] - platforms=["linux/amd64"] + tags=["aerospike/aerospike-server-enterprise:6.2.0.27", "aerospike/aerospike-server-enterprise:6.2.0.27_2"] + platforms=["linux/amd64,linux/arm64"] context="./enterprise/debian11" } target "federal_debian11" { - tags=["aerospike/aerospike-server-federal:6.1.0.32", "aerospike/aerospike-server-federal:6.1.0.32_2"] + tags=["aerospike/aerospike-server-federal:6.2.0.27", "aerospike/aerospike-server-federal:6.2.0.27_2"] platforms=["linux/amd64"] context="./federal/debian11" } target "community_debian11" { - tags=["aerospike/aerospike-server:6.1.0.32", "aerospike/aerospike-server:6.1.0.32_2"] - platforms=["linux/amd64"] + tags=["aerospike/aerospike-server:6.2.0.27", "aerospike/aerospike-server:6.2.0.27_2"] + platforms=["linux/amd64,linux/arm64"] context="./community/debian11" } diff --git a/community/debian11/Dockerfile b/community/debian11/Dockerfile index e3df5f1c..4ab8d439 100644 --- a/community/debian11/Dockerfile +++ b/community/debian11/Dockerfile @@ -13,7 +13,7 @@ LABEL org.opencontainers.image.title="Aerospike Community Server" \ org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \ org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \ org.opencontainers.image.vendor="Aerospike" \ - org.opencontainers.image.version="6.1.0.32" \ + org.opencontainers.image.version="6.2.0.27" \ org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker" # AEROSPIKE_EDITION - required - must be "community", "enterprise", or @@ -23,10 +23,10 @@ LABEL org.opencontainers.image.title="Aerospike Community Server" \ # By selecting "federal" you agree to the "FEDERAL_LICENSE" ARG AEROSPIKE_EDITION="community" -ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.1.0.32/aerospike-server-community-6.1.0.32-debian11.tgz" -ARG AEROSPIKE_SHA_X86_64="1a54797508d7ed6fcf3c9ce5172eeeb974fef11f5c917b3f79d3b114d5747aab" -ARG AEROSPIKE_AARCH64_LINK="" -ARG AEROSPIKE_SHA_AARCH64="" +ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.2.0.27/aerospike-server-community_6.2.0.27_tools-8.1.0_debian11_x86_64.tgz" +ARG AEROSPIKE_SHA_X86_64="fb0c0a2bfda55c822bae97b071a3028809041ea67129241919b7f5e97f72562b" +ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.2.0.27/aerospike-server-community_6.2.0.27_tools-8.1.0_debian11_aarch64.tgz" +ARG AEROSPIKE_SHA_AARCH64="1d182b4cd67e417b6f6b674c2387a4ba35c7f8eefd0ebbeec186960f777ceeeb" SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"] diff --git a/enterprise/debian11/Dockerfile b/enterprise/debian11/Dockerfile index 260fe12d..a6e98d61 100644 --- a/enterprise/debian11/Dockerfile +++ b/enterprise/debian11/Dockerfile @@ -13,7 +13,7 @@ LABEL org.opencontainers.image.title="Aerospike Enterprise Server" \ org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \ org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \ org.opencontainers.image.vendor="Aerospike" \ - org.opencontainers.image.version="6.1.0.32" \ + org.opencontainers.image.version="6.2.0.27" \ org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker" # AEROSPIKE_EDITION - required - must be "community", "enterprise", or @@ -23,10 +23,10 @@ LABEL org.opencontainers.image.title="Aerospike Enterprise Server" \ # By selecting "federal" you agree to the "FEDERAL_LICENSE" ARG AEROSPIKE_EDITION="enterprise" -ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.1.0.32/aerospike-server-enterprise-6.1.0.32-debian11.tgz" -ARG AEROSPIKE_SHA_X86_64="9baedb2720be225336d09381fa0e8a164c4e8aef8786728e5292191500877465" -ARG AEROSPIKE_AARCH64_LINK="" -ARG AEROSPIKE_SHA_AARCH64="" +ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.2.0.27/aerospike-server-enterprise_6.2.0.27_tools-8.1.0_debian11_x86_64.tgz" +ARG AEROSPIKE_SHA_X86_64="01eb5e84a796c4dac9a553024e70017b3fd01da12e4a34521420b385addb20cb" +ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.2.0.27/aerospike-server-enterprise_6.2.0.27_tools-8.1.0_debian11_aarch64.tgz" +ARG AEROSPIKE_SHA_AARCH64="2445aaa1425e8a9ff6611bb153da0b416a0570c35d464d1d22133a7364cbb79b" SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"] diff --git a/federal/debian11/Dockerfile b/federal/debian11/Dockerfile index 07ed7a8a..23201269 100644 --- a/federal/debian11/Dockerfile +++ b/federal/debian11/Dockerfile @@ -13,7 +13,7 @@ LABEL org.opencontainers.image.title="Aerospike Federal Server" \ org.opencontainers.image.base.name="docker.io/library/debian:bullseye-slim" \ org.opencontainers.image.source="https://github.com/aerospike/aerospike-server.docker" \ org.opencontainers.image.vendor="Aerospike" \ - org.opencontainers.image.version="6.1.0.32" \ + org.opencontainers.image.version="6.2.0.27" \ org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker" # AEROSPIKE_EDITION - required - must be "community", "enterprise", or @@ -23,8 +23,8 @@ LABEL org.opencontainers.image.title="Aerospike Federal Server" \ # By selecting "federal" you agree to the "FEDERAL_LICENSE" ARG AEROSPIKE_EDITION="federal" -ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.1.0.32/aerospike-server-federal-6.1.0.32-debian11.tgz" -ARG AEROSPIKE_SHA_X86_64="9d20be6070c86dcc99ba95302c11d1c59e49d96efa76281f4a231ffe7b8f2674" +ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.2.0.27/aerospike-server-federal_6.2.0.27_tools-8.1.0_debian11_x86_64.tgz" +ARG AEROSPIKE_SHA_X86_64="49798573a45c84240e325ea51139ca31f51192bb84a2d70ed6cf37aa74f23f2c" ARG AEROSPIKE_AARCH64_LINK="" ARG AEROSPIKE_SHA_AARCH64=""