11.8 is development version
This commit is contained in:
parent
ed58e853e1
commit
59dc031f52
@ -36,7 +36,7 @@ COPY MariaDB.repo /etc/yum.repos.d/
|
|||||||
# https://access.redhat.com/documentation/en-us/red_hat_software_certification/2024/html/red_hat_openshift_software_certification_policy_guide/assembly-requirements-for-container-images_openshift-sw-cert-policy-introduction#con-image-metadata-requirements_openshift-sw-cert-policy-container-images
|
# https://access.redhat.com/documentation/en-us/red_hat_software_certification/2024/html/red_hat_openshift_software_certification_policy_guide/assembly-requirements-for-container-images_openshift-sw-cert-policy-introduction#con-image-metadata-requirements_openshift-sw-cert-policy-container-images
|
||||||
LABEL name="MariaDB Server" \
|
LABEL name="MariaDB Server" \
|
||||||
vendor="MariaDB Community" \
|
vendor="MariaDB Community" \
|
||||||
version="11.7.0" \
|
version="11.8.0" \
|
||||||
release="Refer to Annotations org.opencontainers.image.{revision,source}" \
|
release="Refer to Annotations org.opencontainers.image.{revision,source}" \
|
||||||
summary="MariaDB Database" \
|
summary="MariaDB Database" \
|
||||||
description="MariaDB Database for relational SQL"
|
description="MariaDB Database for relational SQL"
|
||||||
@ -50,11 +50,11 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
|
|||||||
org.opencontainers.image.licenses="GPL-2.0" \
|
org.opencontainers.image.licenses="GPL-2.0" \
|
||||||
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
|
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
|
||||||
org.opencontainers.image.vendor="MariaDB Community" \
|
org.opencontainers.image.vendor="MariaDB Community" \
|
||||||
org.opencontainers.image.version="11.7.0" \
|
org.opencontainers.image.version="11.8.0" \
|
||||||
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
|
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
|
||||||
|
|
||||||
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
|
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
|
||||||
ARG MARIADB_VERSION=11.7.0
|
ARG MARIADB_VERSION=11.8.0
|
||||||
ENV MARIADB_VERSION=$MARIADB_VERSION
|
ENV MARIADB_VERSION=$MARIADB_VERSION
|
||||||
# release-status:Alpha
|
# release-status:Alpha
|
||||||
# release-support-type:Unknown
|
# release-support-type:Unknown
|
||||||
|
@ -225,7 +225,7 @@ docker_create_db_directories() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_mariadb_version() {
|
_mariadb_version() {
|
||||||
echo -n "11.7.0-MariaDB"
|
echo -n "11.8.0-MariaDB"
|
||||||
}
|
}
|
||||||
|
|
||||||
# initializes the database directory
|
# initializes the database directory
|
||||||
|
@ -75,18 +75,18 @@ LABEL org.opencontainers.image.authors="MariaDB Community" \
|
|||||||
org.opencontainers.image.licenses="GPL-2.0" \
|
org.opencontainers.image.licenses="GPL-2.0" \
|
||||||
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
|
org.opencontainers.image.source="https://github.com/MariaDB/mariadb-docker" \
|
||||||
org.opencontainers.image.vendor="MariaDB Community" \
|
org.opencontainers.image.vendor="MariaDB Community" \
|
||||||
org.opencontainers.image.version="11.7.0" \
|
org.opencontainers.image.version="11.8.0" \
|
||||||
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
|
org.opencontainers.image.url="https://github.com/MariaDB/mariadb-docker"
|
||||||
|
|
||||||
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
|
# bashbrew-architectures: amd64 arm64v8 ppc64le s390x
|
||||||
ARG MARIADB_VERSION=1:11.7.0+maria~ubu2404
|
ARG MARIADB_VERSION=1:11.8.0+maria~ubu2404
|
||||||
ENV MARIADB_VERSION $MARIADB_VERSION
|
ENV MARIADB_VERSION $MARIADB_VERSION
|
||||||
# release-status:Alpha
|
# release-status:Alpha
|
||||||
# release-support-type:Unknown
|
# release-support-type:Unknown
|
||||||
# (https://downloads.mariadb.org/rest-api/mariadb/)
|
# (https://downloads.mariadb.org/rest-api/mariadb/)
|
||||||
|
|
||||||
# Allowing overriding of REPOSITORY, a URL that includes suite and component for testing and Enterprise Versions
|
# Allowing overriding of REPOSITORY, a URL that includes suite and component for testing and Enterprise Versions
|
||||||
ARG REPOSITORY="http://archive.mariadb.org/mariadb-11.7.0/repo/ubuntu/ noble main main/debug"
|
ARG REPOSITORY="http://archive.mariadb.org/mariadb-11.8.0/repo/ubuntu/ noble main main/debug"
|
||||||
|
|
||||||
RUN set -e;\
|
RUN set -e;\
|
||||||
echo "deb ${REPOSITORY}" > /etc/apt/sources.list.d/mariadb.list; \
|
echo "deb ${REPOSITORY}" > /etc/apt/sources.list.d/mariadb.list; \
|
||||||
|
@ -225,7 +225,7 @@ docker_create_db_directories() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_mariadb_version() {
|
_mariadb_version() {
|
||||||
echo -n "11.7.0-MariaDB"
|
echo -n "11.8.0-MariaDB"
|
||||||
}
|
}
|
||||||
|
|
||||||
# initializes the database directory
|
# initializes the database directory
|
||||||
|
@ -5,7 +5,7 @@ set -Eeuo pipefail
|
|||||||
#
|
#
|
||||||
|
|
||||||
development_version=main
|
development_version=main
|
||||||
development_version_real=11.7
|
development_version_real=11.8
|
||||||
|
|
||||||
defaultSuite='noble'
|
defaultSuite='noble'
|
||||||
declare -A suites=(
|
declare -A suites=(
|
||||||
|
@ -138,5 +138,32 @@
|
|||||||
"ppc64le",
|
"ppc64le",
|
||||||
"s390x"
|
"s390x"
|
||||||
]
|
]
|
||||||
|
"main": {
|
||||||
|
"milestone": "main",
|
||||||
|
"version": "11.8.0",
|
||||||
|
"fullVersion": "1:11.8.0+maria~ubu2404",
|
||||||
|
"releaseStatus": "Alpha",
|
||||||
|
"supportType": "Unknown",
|
||||||
|
"base": "ubuntu:noble",
|
||||||
|
"arches": [
|
||||||
|
"amd64",
|
||||||
|
"arm64v8",
|
||||||
|
"ppc64le",
|
||||||
|
"s390x"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"main-ubi": {
|
||||||
|
"milestone": "main",
|
||||||
|
"version": "11.8.0",
|
||||||
|
"fullVersion": "11.8.0",
|
||||||
|
"releaseStatus": "Alpha",
|
||||||
|
"supportType": "Unknown",
|
||||||
|
"base": "ubi9",
|
||||||
|
"arches": [
|
||||||
|
"amd64",
|
||||||
|
"arm64v8",
|
||||||
|
"ppc64le",
|
||||||
|
"s390x"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user