2.1.2-debian-10-r2 release
This commit is contained in:
parent
8ae1d91673
commit
40e45b8c40
|
|
@ -19,7 +19,7 @@ RUN chmod g+rwX /opt/bitnami
|
|||
COPY rootfs /
|
||||
RUN /opt/bitnami/scripts/argo-cd/postunpack.sh
|
||||
ENV BITNAMI_APP_NAME="argo-cd" \
|
||||
BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r1" \
|
||||
BITNAMI_IMAGE_VERSION="2.1.2-debian-10-r2" \
|
||||
LIBNSS_WRAPPER_PATH="/opt/bitnami/common/lib/libnss_wrapper.so" \
|
||||
LNAME="argocd" \
|
||||
NSS_WRAPPER_GROUP="/opt/bitnami/argo-cd/nss_group" \
|
||||
|
|
|
|||
|
|
@ -141,10 +141,51 @@ am_i_root() {
|
|||
if [[ "$(id -u)" = "0" ]]; then
|
||||
true
|
||||
else
|
||||
false
|
||||
false
|
||||
fi
|
||||
}
|
||||
|
||||
########################
|
||||
# Print OS metadata
|
||||
# Arguments:
|
||||
# $1 - Flag name
|
||||
# Flags:
|
||||
# --id - Distro ID
|
||||
# --version - Distro version
|
||||
# --branch - Distro branch
|
||||
# --codename - Distro codename
|
||||
# Returns:
|
||||
# String
|
||||
#########################
|
||||
get_os_metadata() {
|
||||
local -r flag_name="${1:?missing flag}"
|
||||
# Helper function
|
||||
get_os_release_metadata() {
|
||||
local -r env_name="${1:?missing environment variable name}"
|
||||
(
|
||||
. /etc/os-release
|
||||
echo "${!env_name}"
|
||||
)
|
||||
}
|
||||
case "$flag_name" in
|
||||
--id)
|
||||
get_os_release_metadata ID
|
||||
;;
|
||||
--version)
|
||||
get_os_release_metadata VERSION_ID
|
||||
;;
|
||||
--branch)
|
||||
get_os_release_metadata VERSION_ID | sed 's/\..*//'
|
||||
;;
|
||||
--codename)
|
||||
get_os_release_metadata VERSION_CODENAME
|
||||
;;
|
||||
*)
|
||||
error "Unknown flag ${flag_name}"
|
||||
return 1
|
||||
esac
|
||||
}
|
||||
|
||||
########################
|
||||
# Get total memory available
|
||||
# Arguments:
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@ $ docker-compose up -d
|
|||
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.1.2`, `2.1.2-debian-10-r1`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-acmesolver/blob/2.1.2-debian-10-r1/2/debian-10/ Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.1.2`, `2.1.2-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-acmesolver/blob/2.1.2-debian-10-r2/2/debian-10/ Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/argo-cd GitHub repo](https://github.com/bitnami/bitnami-docker-argo-cd).
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue