Skip to content

Commit

Permalink
6.3.0.20_2
Browse files Browse the repository at this point in the history
  • Loading branch information
pvinh-spike committed Apr 26, 2024
1 parent 2902ffa commit 4a3c101
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
16 changes: 8 additions & 8 deletions bake.hcl
Expand Up @@ -14,31 +14,31 @@ group "test" {
}

target "enterprise_debian11_amd64" {
tags=["aerospike/aerospike-server-enterprise-amd64:6.2.0.27", "aerospike/aerospike-server-enterprise-amd64:latest"]
tags=["aerospike/aerospike-server-enterprise-amd64:6.3.0.20", "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"]
tags=["aerospike/aerospike-server-enterprise-arm64:6.3.0.20", "aerospike/aerospike-server-enterprise-arm64:latest"]
platforms=["linux/arm64"]
context="./enterprise/debian11"
}

target "federal_debian11_amd64" {
tags=["aerospike/aerospike-server-federal-amd64:6.2.0.27", "aerospike/aerospike-server-federal-amd64:latest"]
tags=["aerospike/aerospike-server-federal-amd64:6.3.0.20", "aerospike/aerospike-server-federal-amd64:latest"]
platforms=["linux/amd64"]
context="./federal/debian11"
}

target "community_debian11_amd64" {
tags=["aerospike/aerospike-server-community-amd64:6.2.0.27", "aerospike/aerospike-server-community-amd64:latest"]
tags=["aerospike/aerospike-server-community-amd64:6.3.0.20", "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"]
tags=["aerospike/aerospike-server-community-arm64:6.3.0.20", "aerospike/aerospike-server-community-arm64:latest"]
platforms=["linux/arm64"]
context="./community/debian11"
}
Expand All @@ -50,19 +50,19 @@ group "push" {
}

target "enterprise_debian11" {
tags=["aerospike/aerospike-server-enterprise:6.2.0.27", "aerospike/aerospike-server-enterprise:6.2.0.27_2"]
tags=["aerospike/aerospike-server-enterprise:6.3.0.20", "aerospike/aerospike-server-enterprise:6.3.0.20_2"]
platforms=["linux/amd64,linux/arm64"]
context="./enterprise/debian11"
}

target "federal_debian11" {
tags=["aerospike/aerospike-server-federal:6.2.0.27", "aerospike/aerospike-server-federal:6.2.0.27_2"]
tags=["aerospike/aerospike-server-federal:6.3.0.20", "aerospike/aerospike-server-federal:6.3.0.20_2"]
platforms=["linux/amd64"]
context="./federal/debian11"
}

target "community_debian11" {
tags=["aerospike/aerospike-server:6.2.0.27", "aerospike/aerospike-server:6.2.0.27_2"]
tags=["aerospike/aerospike-server:6.3.0.20", "aerospike/aerospike-server:6.3.0.20_2"]
platforms=["linux/amd64,linux/arm64"]
context="./community/debian11"
}
Expand Down
10 changes: 5 additions & 5 deletions community/debian11/Dockerfile
Expand Up @@ -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.2.0.27" \
org.opencontainers.image.version="6.3.0.20" \
org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker"

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
Expand All @@ -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.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"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.3.0.20/aerospike-server-community_6.3.0.20_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="7aad47cf4d7f458b8e50aabb071e760bc24812d1cc49d24bfbb5dcd144404c1a"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-community/6.3.0.20/aerospike-server-community_6.3.0.20_tools-8.5.1_debian11_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="876dcd16f7c54d9de2bda719b4939068c551a158b45320a318dcc139185259ea"

SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"]

Expand Down
10 changes: 5 additions & 5 deletions enterprise/debian11/Dockerfile
Expand Up @@ -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.2.0.27" \
org.opencontainers.image.version="6.3.0.20" \
org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker"

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
Expand All @@ -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.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"
ARG AEROSPIKE_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.3.0.20/aerospike-server-enterprise_6.3.0.20_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="87b9109464cfaab0ba037bed3d06a7e1af5b9c419b6034785e6a3481d0cc402c"
ARG AEROSPIKE_AARCH64_LINK="https://artifacts.aerospike.com/aerospike-server-enterprise/6.3.0.20/aerospike-server-enterprise_6.3.0.20_tools-8.5.1_debian11_aarch64.tgz"
ARG AEROSPIKE_SHA_AARCH64="8439cfbafdeca07c13465afbafe21e7a8bc2357c5b83cec4353bf71c6aab7c85"

SHELL ["/bin/bash", "-Eeuo", "pipefail", "-c"]

Expand Down
6 changes: 3 additions & 3 deletions federal/debian11/Dockerfile
Expand Up @@ -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.2.0.27" \
org.opencontainers.image.version="6.3.0.20" \
org.opencontainers.image.url="https://github.com/aerospike/aerospike-server.docker"

# AEROSPIKE_EDITION - required - must be "community", "enterprise", or
Expand All @@ -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.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_X86_64_LINK="https://artifacts.aerospike.com/aerospike-server-federal/6.3.0.20/aerospike-server-federal_6.3.0.20_tools-8.5.1_debian11_x86_64.tgz"
ARG AEROSPIKE_SHA_X86_64="b52e2615be757daf075f1abf7dfa898e02e504e6ab52f707abeba56e888abe2c"
ARG AEROSPIKE_AARCH64_LINK=""
ARG AEROSPIKE_SHA_AARCH64=""

Expand Down

0 comments on commit 4a3c101

Please sign in to comment.