2.3.1-debian-10-r19 release
This commit is contained in:
parent
565c1212f0
commit
4957cfcc1c
|
|
@ -16,7 +16,7 @@ RUN chmod g+rwX /opt/bitnami
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/harbor-notary-signer/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="harbor-notary-signer" \
|
||||
BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r18" \
|
||||
BITNAMI_IMAGE_VERSION="2.3.1-debian-10-r19" \
|
||||
PATH="/opt/bitnami/harbor-notary-signer/bin:/opt/bitnami/common/bin:$PATH" \
|
||||
SERVICE_NAME="notary_signer"
|
||||
|
||||
|
|
|
|||
|
|
@ -91,6 +91,22 @@ is_true_false_value() {
|
|||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
# Check if the provided argument is a boolean 1/0 value
|
||||
# Arguments:
|
||||
# $1 - Value to check
|
||||
# Returns:
|
||||
# Boolean
|
||||
#########################
|
||||
is_1_0_value() {
|
||||
local -r bool="${1:-}"
|
||||
if [[ "$bool" =~ ^[10]$ ]]; then
|
||||
true
|
||||
else
|
||||
false
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
# Check if the provided argument is an empty string or not defined
|
||||
# Arguments:
|
||||
|
|
|
|||
|
|
@ -41,7 +41,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/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r18`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-harbor-notary-signer/blob/2.3.1-debian-10-r18/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.3.1`, `2.3.1-debian-10-r19`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-harbor-notary-signer/blob/2.3.1-debian-10-r19/2/debian-10/Dockerfile)
|
||||
|
||||
# Configuration
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue