diff --git a/bake.hcl b/bake.hcl index 7c3474ee..14417fb3 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.30", "aerospike/aerospike-server-enterprise-amd64:latest"] + tags=["aerospike/aerospike-server-enterprise-amd64:6.2.0.25", "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.25", "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.30", "aerospike/aerospike-server-federal-amd64:latest"] + tags=["aerospike/aerospike-server-federal-amd64:6.2.0.25", "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.30", "aerospike/aerospike-server-community-amd64:latest"] + tags=["aerospike/aerospike-server-community-amd64:6.2.0.25", "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.25", "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.30", "aerospike/aerospike-server-enterprise:6.1.0.30_1"] - platforms=["linux/amd64"] + tags=["aerospike/aerospike-server-enterprise:6.2.0.25", "aerospike/aerospike-server-enterprise:6.2.0.25_1"] + platforms=["linux/amd64,linux/arm64"] context="./enterprise/debian11" } target "federal_debian11" { - tags=["aerospike/aerospike-server-federal:6.1.0.30", "aerospike/aerospike-server-federal:6.1.0.30_1"] + tags=["aerospike/aerospike-server-federal:6.2.0.25", "aerospike/aerospike-server-federal:6.2.0.25_1"] platforms=["linux/amd64"] context="./federal/debian11" } target "community_debian11" { - tags=["aerospike/aerospike-server:6.1.0.30", "aerospike/aerospike-server:6.1.0.30_1"] - platforms=["linux/amd64"] + tags=["aerospike/aerospike-server:6.2.0.25", "aerospike/aerospike-server:6.2.0.25_1"] + platforms=["linux/amd64,linux/arm64"] context="./community/debian11" } diff --git a/community/debian11/Dockerfile b/community/debian11/Dockerfile index 4a413c02..eaf2c007 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.30" \ + org.opencontainers.image.version="6.2.0.25" \ 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.30/aerospike-server-community-6.1.0.30-debian11.tgz" -ARG AEROSPIKE_SHA_X86_64="bea2fb90a5b967b10705df1546a5c959a818129ed6c14fe2d97443dd01890e4e" -ARG AEROSPIKE_AARCH64_LINK="" -ARG AEROSPIKE_SHA_AARCH64="" +ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.2.0.25/aerospike-server-community_6.2.0.25_tools-8.1.0_debian11_x86_64.tgz" +ARG AEROSPIKE_SHA_X86_64="2cf56eb7c57caad14cf9718d2c2ef834721f3185bc4f2145e490c4720d6844d7" +ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.2.0.25/aerospike-server-community_6.2.0.25_tools-8.1.0_debian11_aarch64.tgz" +ARG AEROSPIKE_SHA_AARCH64="8bb1cd8eaac1bb4656e739f7fccf2e879a6270a6c7b6ce48fdf536f98f6f35f4" SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"] diff --git a/enterprise/debian11/Dockerfile b/enterprise/debian11/Dockerfile index b58301dc..1b42e6de 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.30" \ + org.opencontainers.image.version="6.2.0.25" \ 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.30/aerospike-server-enterprise-6.1.0.30-debian11.tgz" -ARG AEROSPIKE_SHA_X86_64="8e1010d8c258aa43da76db329be2137a57fd192af16b4a01b6862ebe7733d274" -ARG AEROSPIKE_AARCH64_LINK="" -ARG AEROSPIKE_SHA_AARCH64="" +ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.2.0.25/aerospike-server-enterprise_6.2.0.25_tools-8.1.0_debian11_x86_64.tgz" +ARG AEROSPIKE_SHA_X86_64="3d13ec0133d18baf094776d85bba7632946940effecde0ad99e9bac01934e9b8" +ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.2.0.25/aerospike-server-enterprise_6.2.0.25_tools-8.1.0_debian11_aarch64.tgz" +ARG AEROSPIKE_SHA_AARCH64="4e2b4dfbbd1ec57420504e2cf9f76445898f3e4dabf05a24179e088ada74a5dd" SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"] diff --git a/federal/debian11/Dockerfile b/federal/debian11/Dockerfile index 8f6e530e..ee22604d 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.30" \ + org.opencontainers.image.version="6.2.0.25" \ 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.30/aerospike-server-federal-6.1.0.30-debian11.tgz" -ARG AEROSPIKE_SHA_X86_64="34b4b15279ffe94bd762d4ffebeec7067207f86e0ad7176cbfcbc2c675479077" +ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.2.0.25/aerospike-server-federal_6.2.0.25_tools-8.1.0_debian11_x86_64.tgz" +ARG AEROSPIKE_SHA_X86_64="ed7ea3a40ea8b3d4ea9996496f923e167de2bdf3099d3fed75188b851a6f63ea" ARG AEROSPIKE_AARCH64_LINK="" ARG AEROSPIKE_SHA_AARCH64=""