mirror of
https://github.com/bitnami/containers.git
synced 2026-03-08 02:37:20 +08:00
2.2.3-debian-10-r3 release
This commit is contained in:
@@ -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" \
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
|
||||
@@ -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).
|
||||
|
||||
|
||||
Reference in New Issue
Block a user