Skip to content

Commit 024cf2d

Browse files
medmrghpuckel
authored andcommitted
Bump airflow version (#2) (#304)
* Bump Airflow Version to 1.10.2 * Fix CI
1 parent 40cfa94 commit 024cf2d

File tree

4 files changed

+17
-23
lines changed

4 files changed

+17
-23
lines changed

.circleci/config.yml

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,24 @@
11
version: 2
22

33
jobs:
4-
build:
4+
build_and_test:
55
docker:
66
- image: docker:18.06.1-ce-git
77
working_directory: ~/CircleCI/docker-airflow
88
steps:
99
- checkout
1010
- setup_remote_docker:
1111
docker_layer_caching: true
12-
- run: |
13-
docker build -t puckel/docker-airflow .
14-
15-
test:
16-
docker:
17-
- image: docker:18.06.1-ce-git
18-
steps:
19-
- setup_remote_docker
20-
- run: |
21-
docker run puckel/docker-airflow version |grep '1.10.1'
22-
12+
- run:
13+
name: Build docker image
14+
command: |
15+
docker build -t puckel/docker-airflow .
16+
- run:
17+
name: Test docker image
18+
command: |
19+
docker run puckel/docker-airflow version |grep '1.10.2'
2320
workflows:
2421
version: 2
2522
build_and_test:
2623
jobs:
27-
- build
28-
- test:
29-
requires:
30-
- build
24+
- build_and_test

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# VERSION 1.10.1
1+
# VERSION 1.10.2
22
# AUTHOR: Matthieu "Puckel_" Roisil
33
# DESCRIPTION: Basic Airflow container
44
# BUILD: docker build --rm -t puckel/docker-airflow .
@@ -12,7 +12,7 @@ ENV DEBIAN_FRONTEND noninteractive
1212
ENV TERM linux
1313

1414
# Airflow
15-
ARG AIRFLOW_VERSION=1.10.1
15+
ARG AIRFLOW_VERSION=1.10.2
1616
ARG AIRFLOW_HOME=/usr/local/airflow
1717
ARG AIRFLOW_DEPS=""
1818
ARG PYTHON_DEPS=""

docker-compose-CeleryExecutor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ services:
1616
# - ./pgdata:/var/lib/postgresql/data/pgdata
1717

1818
webserver:
19-
image: puckel/docker-airflow:1.10.1
19+
image: puckel/docker-airflow:1.10.2
2020
restart: always
2121
depends_on:
2222
- postgres
@@ -43,7 +43,7 @@ services:
4343
retries: 3
4444

4545
flower:
46-
image: puckel/docker-airflow:1.10.1
46+
image: puckel/docker-airflow:1.10.2
4747
restart: always
4848
depends_on:
4949
- redis
@@ -55,7 +55,7 @@ services:
5555
command: flower
5656

5757
scheduler:
58-
image: puckel/docker-airflow:1.10.1
58+
image: puckel/docker-airflow:1.10.2
5959
restart: always
6060
depends_on:
6161
- webserver
@@ -74,7 +74,7 @@ services:
7474
command: scheduler
7575

7676
worker:
77-
image: puckel/docker-airflow:1.10.1
77+
image: puckel/docker-airflow:1.10.2
7878
restart: always
7979
depends_on:
8080
- scheduler

docker-compose-LocalExecutor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ services:
88
- POSTGRES_DB=airflow
99

1010
webserver:
11-
image: puckel/docker-airflow:1.10.1
11+
image: puckel/docker-airflow:1.10.2
1212
restart: always
1313
depends_on:
1414
- postgres

0 commit comments

Comments
 (0)