2.0.1-debian-10-r52 release
This commit is contained in:
parent
7d21bb812f
commit
456186399d
|
|
@ -27,7 +27,7 @@ RUN /opt/bitnami/scripts/airflow/postunpack.sh
|
|||
RUN /opt/bitnami/scripts/locales/add-extra-locales.sh
|
||||
ENV AIRFLOW_HOME="/opt/bitnami/airflow" \
|
||||
BITNAMI_APP_NAME="airflow" \
|
||||
BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r51" \
|
||||
BITNAMI_IMAGE_VERSION="2.0.1-debian-10-r52" \
|
||||
LANG="en_US.UTF-8" \
|
||||
LANGUAGE="en_US:en" \
|
||||
LD_LIBRARY_PATH="/opt/bitnami/python/lib/:/opt/bitnami/airflow/venv/lib/python3.8/site-packages/numpy.libs/:$LD_LIBRARY_PATH" \
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ version: '2'
|
|||
|
||||
services:
|
||||
postgresql:
|
||||
image: 'docker.io/bitnami/postgresql:10'
|
||||
image: docker.io/bitnami/postgresql:10
|
||||
volumes:
|
||||
- 'postgresql_data:/bitnami/postgresql'
|
||||
environment:
|
||||
|
|
@ -19,7 +19,7 @@ services:
|
|||
airflow-scheduler:
|
||||
# TODO: to be reverted to use proper registry/distro on T39132
|
||||
# image: docker.io/bitnami/airflow-scheduler:2
|
||||
image: bitnami/airflow-scheduler:2
|
||||
image: docker.io/bitnami/airflow-scheduler:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
@ -30,7 +30,7 @@ services:
|
|||
airflow-worker:
|
||||
# TODO: to be reverted to use proper registry/distro on T39132
|
||||
# image: docker.io/bitnami/airflow-worker:2
|
||||
image: bitnami/airflow-worker:2
|
||||
image: docker.io/bitnami/airflow-worker:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
@ -39,7 +39,7 @@ services:
|
|||
volumes:
|
||||
- airflow_worker_data:/bitnami
|
||||
airflow:
|
||||
image: docker.io/bitnami/airflow:2-debian-10
|
||||
image: docker.io/bitnami/airflow:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ if [[ "$WITH_ALL_LOCALES" =~ ^(yes|true|1)$ ]]; then
|
|||
echo "Enabling all locales"
|
||||
cp "$SUPPORTED_LOCALES_FILE" "$LOCALES_FILE"
|
||||
else
|
||||
# shellcheck disable=SC2001
|
||||
LOCALES_TO_ADD="$(sed 's/[,;]\s*/\n/g' <<< "$EXTRA_LOCALES")"
|
||||
while [[ -n "$LOCALES_TO_ADD" ]] && read -r locale; do
|
||||
echo "Enabling locale ${locale}"
|
||||
|
|
|
|||
|
|
@ -33,7 +33,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.0.1`, `2.0.1-debian-10-r51`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/2.0.1-debian-10-r51/2/debian-10/Dockerfile)
|
||||
* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r52`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/2.0.1-debian-10-r52/2/debian-10/Dockerfile)
|
||||
* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r18` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/1.10.15-debian-10-r18/1/debian-10/Dockerfile)
|
||||
|
||||
Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow).
|
||||
|
|
|
|||
|
|
@ -18,8 +18,8 @@ services:
|
|||
- ALLOW_EMPTY_PASSWORD=yes
|
||||
airflow-scheduler:
|
||||
# TODO: to be reverted to use proper registry/distro on T39132
|
||||
# image: docker.io/bitnami/airflow-scheduler:2-debian-10
|
||||
image: bitnami/airflow-scheduler:2
|
||||
# image: docker.io/bitnami/airflow-scheduler:2
|
||||
image: docker.io/bitnami/airflow-scheduler:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
@ -29,8 +29,8 @@ services:
|
|||
- airflow_scheduler_data:/bitnami
|
||||
airflow-worker:
|
||||
# TODO: to be reverted to use proper registry/distro on T39132
|
||||
# image: docker.io/bitnami/airflow-worker:2-debian-10
|
||||
image: bitnami/airflow-worker:2
|
||||
# image: docker.io/bitnami/airflow-worker:2
|
||||
image: docker.io/bitnami/airflow-worker:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
@ -39,7 +39,7 @@ services:
|
|||
volumes:
|
||||
- airflow_worker_data:/bitnami
|
||||
airflow:
|
||||
image: docker.io/bitnami/airflow:2-debian-10
|
||||
image: docker.io/bitnami/airflow:2
|
||||
environment:
|
||||
- AIRFLOW_LDAP_ENABLE=yes
|
||||
- AIRFLOW_LDAP_URI=ldap://openldap:1389
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ version: '2'
|
|||
|
||||
services:
|
||||
postgresql:
|
||||
image: 'docker.io/bitnami/postgresql:10'
|
||||
image: docker.io/bitnami/postgresql:10
|
||||
volumes:
|
||||
- 'postgresql_data:/bitnami/postgresql'
|
||||
environment:
|
||||
|
|
@ -19,7 +19,7 @@ services:
|
|||
airflow-scheduler:
|
||||
# TODO: to be reverted to use proper registry/distro on T39132
|
||||
# image: docker.io/bitnami/airflow-scheduler:2
|
||||
image: bitnami/airflow-scheduler:2
|
||||
image: docker.io/bitnami/airflow-scheduler:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
@ -30,7 +30,7 @@ services:
|
|||
airflow-worker:
|
||||
# TODO: to be reverted to use proper registry/distro on T39132
|
||||
# image: docker.io/bitnami/airflow-worker:2
|
||||
image: bitnami/airflow-worker:2
|
||||
image: docker.io/bitnami/airflow-worker:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
@ -39,7 +39,7 @@ services:
|
|||
volumes:
|
||||
- airflow_worker_data:/bitnami
|
||||
airflow:
|
||||
image: docker.io/bitnami/airflow:2-debian-10
|
||||
image: docker.io/bitnami/airflow:2
|
||||
environment:
|
||||
- AIRFLOW_DATABASE_NAME=bitnami_airflow
|
||||
- AIRFLOW_DATABASE_USERNAME=bn_airflow
|
||||
|
|
|
|||
Loading…
Reference in New Issue