2.2.3-debian-10-r3 release

This commit is contained in:
Bitnami Bot
2021-12-24 22:01:22 +00:00
parent 9c3e50ba20
commit aabb945d4b
3 changed files with 7 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ RUN /opt/bitnami/scripts/airflow-worker/postunpack.sh
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
ENV AIRFLOW_HOME="/opt/bitnami/airflow" \
BITNAMI_APP_NAME="airflow-worker" \
BITNAMI_IMAGE_VERSION="2.2.3-debian-10-r2" \
BITNAMI_IMAGE_VERSION="2.2.3-debian-10-r3" \
C_FORCE_ROOT="True" \
LANG="en_US.UTF-8" \
LANGUAGE="en_US:en" \

View File

@@ -321,15 +321,17 @@ airflow_webserver_conf_set() {
shift 2
local -r file="$AIRFLOW_WEBSERVER_CONF_FILE"
local entry
is_boolean_yes "$is_literal" && entry="${key} = '${value}'" || entry="${key} = ${value}"
# Check if the value was set before
if grep -q "^#*\\s*${key} =.*$" "$file"; then
local entry
is_boolean_yes "$is_literal" && entry="${key} = '${value}'" || entry="${key} = ${value}"
# Update the existing key
replace_in_file "$file" "^#*\\s*${key} =.*$" "$entry" false
else
# Add a new key
printf '\n%s = %s' "$key" "$value" >>"$file"
local new_value="$value"
is_boolean_yes "$is_literal" && new_value="'${value}'"
printf '\n%s = %s' "$key" "$new_value" >>"$file"
fi
}

View File

@@ -37,7 +37,7 @@ You can find the default credentials and available configuration options in the
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.2.3`, `2.2.3-debian-10-r2`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-worker/blob/2.2.3-debian-10-r2/2/debian-10/Dockerfile)
* [`2`, `2-debian-10`, `2.2.3`, `2.2.3-debian-10-r3`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow-worker/blob/2.2.3-debian-10-r3/2/debian-10/Dockerfile)
Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow-worker).