[bitnami/mariadb-galera] Release 11.8.2-debian-12-r2 (#82677)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-06-27 09:13:47 +02:00
committed by GitHub
parent a7934f46b8
commit 869bc753c6
2 changed files with 48 additions and 1 deletions

View File

@@ -8,7 +8,7 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2025-06-26T06:28:05Z" \
org.opencontainers.image.created="2025-06-27T06:28:34Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/mariadb-galera" \

View File

@@ -0,0 +1,47 @@
# Copyright Broadcom, Inc. All Rights Reserved.
# SPDX-License-Identifier: APACHE-2.0
services:
mariadb-galera:
image: docker.io/bitnami/mariadb-galera:11.8
ports:
- '3306:3306'
- '4444:4444'
- '4567:4567'
- '4568:4568'
volumes:
- 'mariadb_galera_data:/bitnami/mariadb'
environment:
- MARIADB_ROOT_PASSWORD=root-password
- MARIADB_GALERA_MARIABACKUP_PASSWORD=backup-password
- MARIADB_USER=user01
- MARIADB_DATABASE=my_database
- MARIADB_GALERA_CLUSTER_ADDRESS=gcomm://
- MARIADB_ENABLE_LDAP=yes
- LDAP_URI=ldap://openldap:1389
- LDAP_BASE=dc=example,dc=org
- LDAP_BIND_DN=cn=admin,dc=example,dc=org
- LDAP_BIND_PASSWORD=adminpassword
healthcheck:
test: ['CMD', '/opt/bitnami/scripts/mariadb-galera/healthcheck.sh']
interval: 15s
timeout: 5s
retries: 6
openldap:
image: 'docker.io/bitnami/openldap:latest'
ports:
- '1389:1389'
environment:
- LDAP_ADMIN_USERNAME=admin
- LDAP_ADMIN_PASSWORD=adminpassword
- LDAP_USERS=user01
- LDAP_PASSWORDS=password1
volumes:
- 'openldap_data:/bitnami/openldap'
volumes:
mariadb_galera_data:
driver: local
openldap_data:
driver: local