mirror of
https://github.com/bitnami/containers.git
synced 2026-03-15 06:48:04 +08:00
6.15.2-6-debian-10-r218 release
This commit is contained in:
@@ -20,7 +20,7 @@ COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/ejbca/postunpack.sh
|
||||
ENV ALLOW_EMPTY_PASSWORD="no" \
|
||||
BITNAMI_APP_NAME="ejbca" \
|
||||
BITNAMI_IMAGE_VERSION="6.15.2-6-debian-10-r217" \
|
||||
BITNAMI_IMAGE_VERSION="6.15.2-6-debian-10-r218" \
|
||||
MARIADB_HOST="mariadb" \
|
||||
MARIADB_PORT_NUMBER="3306" \
|
||||
MARIADB_ROOT_PASSWORD="" \
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
version: "2"
|
||||
services:
|
||||
mariadb:
|
||||
image: "docker.io/bitnami/mariadb:10.5-debian-10"
|
||||
image: docker.io/bitnami/mariadb:10.5
|
||||
volumes:
|
||||
- "mariadb_data:/bitnami/mariadb"
|
||||
environment:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
- MARIADB_DATABASE=bitnami_ejbca
|
||||
- MARIADB_PASSWORD=Bitnami1234
|
||||
ejbca:
|
||||
image: "docker.io/bitnami/ejbca:6-debian-10"
|
||||
image: docker.io/bitnami/ejbca:6
|
||||
ports:
|
||||
- 8080:8080
|
||||
- 8443:8443
|
||||
|
||||
@@ -106,5 +106,7 @@ indent() {
|
||||
for ((i = 0; i < num; i++)); do
|
||||
indent_unit="${indent_unit}${char}"
|
||||
done
|
||||
# shellcheck disable=SC2001
|
||||
# Complex regex, see https://github.com/koalaman/shellcheck/wiki/SC2001#exceptions
|
||||
echo "$string" | sed "s/^/${indent_unit}/"
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
# Functions
|
||||
########################
|
||||
# Gets semantic version
|
||||
# Gets semantic version
|
||||
# Arguments:
|
||||
# $1 - version: string to extract major.minor.patch
|
||||
# $2 - section: 1 to extract major, 2 to extract minor, 3 to extract patch
|
||||
@@ -38,7 +38,7 @@ get_sematic_version () {
|
||||
done
|
||||
|
||||
local number_regex='^[0-9]+$'
|
||||
if [[ "$section" =~ $number_regex ]] && (( $section > 0 )) && (( $section <= 3 )); then
|
||||
if [[ "$section" =~ $number_regex ]] && (( section > 0 )) && (( section <= 3 )); then
|
||||
echo "${version_sections[$section]}"
|
||||
return
|
||||
else
|
||||
|
||||
@@ -442,7 +442,7 @@ ejbca_create_truststore() {
|
||||
info "Load the CAs in the trustkeystore"
|
||||
ejbca_ca="$(ejbca_command ca listcas 2>&1)"
|
||||
if grep -q 'CA Name: ' <<<"$ejbca_ca"; then
|
||||
ca_list=($(grep 'CA Name: ' <<<"$ejbca_ca" | sed 's/.*CA Name: //g'))
|
||||
ca_list=("$(grep 'CA Name: ' <<<"$ejbca_ca" | sed 's/.*CA Name: //g')")
|
||||
for line in "${ca_list[@]}"; do
|
||||
ejbca_command ca getcacert \
|
||||
--caname "$line" \
|
||||
|
||||
@@ -35,7 +35,7 @@ Non-root container images add an extra layer of security and are generally recom
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/containers/how-to/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`6`, `6-debian-10`, `6.15.2-6`, `6.15.2-6-debian-10-r217`, `latest` (6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ejbca/blob/6.15.2-6-debian-10-r217/6/debian-10/Dockerfile)
|
||||
* [`6`, `6-debian-10`, `6.15.2-6`, `6.15.2-6-debian-10-r218`, `latest` (6/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-ejbca/blob/6.15.2-6-debian-10-r218/6/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/ejbca GitHub repo](https://github.com/bitnami/bitnami-docker-ejbca).
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
version: "2"
|
||||
services:
|
||||
mariadb:
|
||||
image: "docker.io/bitnami/mariadb:10.5-debian-10"
|
||||
image: docker.io/bitnami/mariadb:10.5
|
||||
volumes:
|
||||
- "mariadb_data:/bitnami/mariadb"
|
||||
environment:
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
- MARIADB_DATABASE=bitnami_ejbca
|
||||
- MARIADB_PASSWORD=Bitnami1234
|
||||
ejbca:
|
||||
image: "docker.io/bitnami/ejbca:6-debian-10"
|
||||
image: docker.io/bitnami/ejbca:6
|
||||
ports:
|
||||
- 8080:8080
|
||||
- 8443:8443
|
||||
|
||||
Reference in New Issue
Block a user