Skip to content

Commit

Permalink
Upgrades airflow to 2.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
MattTriano committed Dec 15, 2024
1 parent 676769b commit 4ae21e3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ WITH records_with_basic_cleaning AS (
upper(class::text) AS class,
upper(majorclass::text) AS majorclass,
upper(result::text) AS result,
changereason::smallint AS changereason,
upper(changereason::text) AS changereason,
upper(changereasondescription::text) AS changereasondescription,
nochangereason::smallint AS nochangereason,
upper(nochangereason::text) AS nochangereason,
upper(nochangereasondescription::text) AS nochangereasondescription,
bor_landvalue::real::bigint AS bor_landvalue,
bor_improvementvalue::real::bigint AS bor_improvementvalue,
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ services:

airflow-webserver:
<<: *airflow-common
image: adwh_airflow_webserver:2.9.3
image: adwh_airflow_webserver:2.10.3
command: webserver
ports:
- "8080:8080"
Expand All @@ -338,7 +338,7 @@ services:

airflow-scheduler:
<<: *airflow-common
image: adwh_airflow_scheduler:2.9.3
image: adwh_airflow_scheduler:2.10.3
command: scheduler
healthcheck:
test:
Expand All @@ -359,7 +359,7 @@ services:

airflow-triggerer:
<<: *airflow-common
image: adwh_airflow_triggerer:2.9.3
image: adwh_airflow_triggerer:2.10.3
command: triggerer
healthcheck:
test:
Expand All @@ -378,7 +378,7 @@ services:

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

airflow-cli:
<<: *airflow-common
image: adwh_airflow_cli:2.9.3
image: adwh_airflow_cli:2.10.3
profiles:
- debug
environment:
Expand Down
2 changes: 1 addition & 1 deletion docker/airflow/airflow.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM apache/airflow:2.9.3-python3.12
FROM apache/airflow:2.10.3-python3.12
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
Expand Down

0 comments on commit 4ae21e3

Please sign in to comment.