Skip to content

Commit

Permalink
v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
puckel committed Jan 3, 2018
1 parent ea9a036 commit f4cf78c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ Session.vim

# sftp configuration file
sftp-config.json
*.pyc
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VERSION 1.8.1-1
# VERSION 1.9.0-1
# AUTHOR: Matthieu "Puckel_" Roisil
# DESCRIPTION: Basic Airflow container
# BUILD: docker build --rm -t puckel/docker-airflow .
Expand All @@ -12,7 +12,7 @@ ENV DEBIAN_FRONTEND noninteractive
ENV TERM linux

# Airflow
ARG AIRFLOW_VERSION=1.8.2
ARG AIRFLOW_VERSION=1.9.0
ARG AIRFLOW_HOME=/usr/local/airflow

# Define en_US.
Expand Down Expand Up @@ -57,7 +57,7 @@ RUN set -ex \
&& pip install ndg-httpsclient \
&& pip install pyasn1 \
&& pip install apache-airflow[crypto,celery,postgres,hive,jdbc]==$AIRFLOW_VERSION \
&& pip install celery[redis]==3.1.17 \
&& pip install celery[redis] \
&& apt-get purge --auto-remove -yqq $buildDeps \
&& apt-get clean \
&& rm -rf \
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ test:
pre:
- sleep 5
override:
- docker run puckel/docker-airflow version |grep '1.8.2'
- docker run puckel/docker-airflow version |grep '1.9.0'
8 changes: 4 additions & 4 deletions docker-compose-CeleryExecutor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
# - ./pgdata:/var/lib/postgresql/data/pgdata

webserver:
image: puckel/docker-airflow:1.8.2
image: puckel/docker-airflow:1.9.0
restart: always
depends_on:
- postgres
Expand All @@ -41,7 +41,7 @@ services:
retries: 3

flower:
image: puckel/docker-airflow:1.8.2
image: puckel/docker-airflow:1.9.0
restart: always
depends_on:
- redis
Expand All @@ -53,7 +53,7 @@ services:
command: flower

scheduler:
image: puckel/docker-airflow:1.8.2
image: puckel/docker-airflow:1.9.0
restart: always
depends_on:
- webserver
Expand All @@ -70,7 +70,7 @@ services:
command: scheduler

worker:
image: puckel/docker-airflow:1.8.2
image: puckel/docker-airflow:1.9.0
restart: always
depends_on:
- scheduler
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-LocalExecutor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
- POSTGRES_DB=airflow

webserver:
image: puckel/docker-airflow:1.8.2
image: puckel/docker-airflow:1.9.0
restart: always
depends_on:
- postgres
Expand Down

0 comments on commit f4cf78c

Please sign in to comment.