Skip to content

Commit

Permalink
Merge pull request #186 from MattTriano/upgrade_airflow_to_2_7_2
Browse files Browse the repository at this point in the history
Upgrades Airflow version to 2.7.2 (and dbt to 1.6.3 and pgAdmin4 to 7.7)
  • Loading branch information
MattTriano authored Oct 15, 2023
2 parents 6eee527 + 8bd0013 commit 02a8093
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Dockerfiles/airflow.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM apache/airflow:2.7.0-python3.10
FROM apache/airflow:2.7.2-python3.10
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/dbt.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM ghcr.io/dbt-labs/dbt-postgres:1.5.2
FROM ghcr.io/dbt-labs/dbt-postgres:1.6.3
WORKDIR /usr/app
ENTRYPOINT ["bash"]
2 changes: 1 addition & 1 deletion Dockerfiles/pgadmin4.Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM dpage/pgadmin4:7.5
FROM dpage/pgadmin4:7.7
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ services:
restart: always

db_admin:
image: adwh_pgadmin:7.5
image: adwh_pgadmin:7.7
build:
context: ./
dockerfile: ./Dockerfiles/pgadmin4.Dockerfile
Expand All @@ -193,7 +193,7 @@ services:
- re_etl_admin:/var/lib/pgadmin

dbt_proj:
image: adwh_dbt:1.5.2
image: adwh_dbt:1.6.3
build:
context: ./
dockerfile: ./Dockerfiles/dbt.Dockerfile
Expand All @@ -213,7 +213,7 @@ services:

airflow-webserver:
<<: *airflow-common
image: adwh_airflow_webserver:2.7.0
image: adwh_airflow_webserver:2.7.2
command: webserver
ports:
- "8080:8080"
Expand All @@ -236,7 +236,7 @@ services:

airflow-scheduler:
<<: *airflow-common
image: adwh_airflow_scheduler:2.7.0
image: adwh_airflow_scheduler:2.7.2
command: scheduler
healthcheck:
test:
Expand All @@ -257,7 +257,7 @@ services:

airflow-triggerer:
<<: *airflow-common
image: adwh_airflow_triggerer:2.7.0
image: adwh_airflow_triggerer:2.7.2
command: triggerer
healthcheck:
test:
Expand All @@ -276,7 +276,7 @@ services:

airflow-init:
<<: *airflow-common
image: adwh_airflow_init:2.7.0
image: adwh_airflow_init:2.7.2
entrypoint: /bin/bash
# yamllint disable rule:line-length
command:
Expand Down Expand Up @@ -304,7 +304,7 @@ services:

airflow-cli:
<<: *airflow-common
image: adwh_airflow_cli:2.7.0
image: adwh_airflow_cli:2.7.2
profiles:
- debug
environment:
Expand Down
22 changes: 11 additions & 11 deletions requirements/airflow_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
black==23.7
dbt-core==1.5.2
black==23.9.1
dbt-core==1.6.3
dbt-extractor==0.4.1
dbt-postgres==1.5.2
dbt-postgres==1.6.3
Fiona==1.9.3
GeoAlchemy2==0.14.0
geopandas==0.13.2
great-expectations==0.17.5
GeoAlchemy2==0.14.1
geopandas==0.14.0
great-expectations==0.17.22
jupyterlab
jupyterlab-pygments==0.2.2
jupyterlab-widgets==3.0.8
jupyterlab-widgets==3.0.9
networkx==2.8.8
pyproj==3.6.0
pytest==7.4.0
pyproj==3.6.1
pytest==7.4.2
pytest-mock==3.11.1
Rtree==1.0.1
scikit-learn==1.3.0
scipy==1.11.1
scikit-learn==1.3.1
scipy==1.11.3
shapely

0 comments on commit 02a8093

Please sign in to comment.