1.10.15-debian-10-r11 release
This commit is contained in:
parent
4de9874c2c
commit
59959321e7
|
|
@ -57,7 +57,7 @@ ENV AIRFLOW_BASE_URL="" \
|
||||||
AIRFLOW_WEBSERVER_HOST="127.0.0.1" \
|
AIRFLOW_WEBSERVER_HOST="127.0.0.1" \
|
||||||
AIRFLOW_WEBSERVER_PORT_NUMBER="8080" \
|
AIRFLOW_WEBSERVER_PORT_NUMBER="8080" \
|
||||||
BITNAMI_APP_NAME="airflow" \
|
BITNAMI_APP_NAME="airflow" \
|
||||||
BITNAMI_IMAGE_VERSION="1.10.15-debian-10-r10" \
|
BITNAMI_IMAGE_VERSION="1.10.15-debian-10-r11" \
|
||||||
LANG="en_US.UTF-8" \
|
LANG="en_US.UTF-8" \
|
||||||
LANGUAGE="en_US:en" \
|
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" \
|
LD_LIBRARY_PATH="/opt/bitnami/python/lib/:/opt/bitnami/airflow/venv/lib/python3.8/site-packages/numpy.libs/:$LD_LIBRARY_PATH" \
|
||||||
|
|
|
||||||
|
|
@ -33,8 +33,8 @@ 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/).
|
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-r46`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/2.0.1-debian-10-r46/2/debian-10/Dockerfile)
|
* [`2`, `2-debian-10`, `2.0.1`, `2.0.1-debian-10-r47`, `latest` (2/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/2.0.1-debian-10-r47/2/debian-10/Dockerfile)
|
||||||
* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r10` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/1.10.15-debian-10-r10/1/debian-10/Dockerfile)
|
* [`1`, `1-debian-10`, `1.10.15`, `1.10.15-debian-10-r11` (1/debian-10/Dockerfile)](https://github.com/bitnami/bitnami-docker-airflow/blob/1.10.15-debian-10-r11/1/debian-10/Dockerfile)
|
||||||
|
|
||||||
Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow).
|
Subscribe to project updates by watching the [bitnami/airflow GitHub repo](https://github.com/bitnami/bitnami-docker-airflow).
|
||||||
|
|
||||||
|
|
@ -219,10 +219,9 @@ services:
|
||||||
$ docker network create airflow-tier
|
$ docker network create airflow-tier
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Create a volume for PostgreSQL persistence and create a PostgreSQL container
|
2. Create the PostgreSQL container with host volumes
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker volume create --name postgresql_data
|
|
||||||
$ docker run -d --name postgresql \
|
$ docker run -d --name postgresql \
|
||||||
-e POSTGRESQL_USERNAME=bn_airflow \
|
-e POSTGRESQL_USERNAME=bn_airflow \
|
||||||
-e POSTGRESQL_PASSWORD=bitnami1 \
|
-e POSTGRESQL_PASSWORD=bitnami1 \
|
||||||
|
|
@ -232,10 +231,9 @@ services:
|
||||||
bitnami/postgresql:latest
|
bitnami/postgresql:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Create a volume for Redis(TM) persistence and create a Redis(TM) container
|
3. Create the Redis(TM) container with host volumes
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker volume create --name redis_data
|
|
||||||
$ docker run -d --name redis \
|
$ docker run -d --name redis \
|
||||||
-e ALLOW_EMPTY_PASSWORD=yes \
|
-e ALLOW_EMPTY_PASSWORD=yes \
|
||||||
--net airflow-tier \
|
--net airflow-tier \
|
||||||
|
|
@ -243,10 +241,9 @@ services:
|
||||||
bitnami/redis:latest
|
bitnami/redis:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
4. Create volumes for Airflow persistence and launch the container
|
4. Create the Airflow container with host volumes
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker volume create --name airflow_data
|
|
||||||
$ docker run -d --name airflow -p 8080:8080 \
|
$ docker run -d --name airflow -p 8080:8080 \
|
||||||
-e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \
|
-e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \
|
||||||
-e AIRFLOW_EXECUTOR=CeleryExecutor \
|
-e AIRFLOW_EXECUTOR=CeleryExecutor \
|
||||||
|
|
@ -262,10 +259,9 @@ services:
|
||||||
bitnami/airflow:latest
|
bitnami/airflow:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Create volumes for Airflow Scheduler persistence and launch the container
|
5. Create the Airflow Scheduler container with host volumes
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker volume create --name airflow_scheduler_data
|
|
||||||
$ docker run -d --name airflow-scheduler \
|
$ docker run -d --name airflow-scheduler \
|
||||||
-e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \
|
-e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \
|
||||||
-e AIRFLOW_EXECUTOR=CeleryExecutor \
|
-e AIRFLOW_EXECUTOR=CeleryExecutor \
|
||||||
|
|
@ -278,10 +274,9 @@ services:
|
||||||
bitnami/airflow-scheduler:latest
|
bitnami/airflow-scheduler:latest
|
||||||
```
|
```
|
||||||
|
|
||||||
6. Create volumes for Airflow Worker persistence and launch the container
|
6. Create the Airflow Worker container with host volumes
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ docker volume create --name airflow_worker_data
|
|
||||||
$ docker run -d --name airflow-worker \
|
$ docker run -d --name airflow-worker \
|
||||||
-e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \
|
-e AIRFLOW_FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho= \
|
||||||
-e AIRFLOW_EXECUTOR=CeleryExecutor \
|
-e AIRFLOW_EXECUTOR=CeleryExecutor \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue