Skip to content

Commit

Permalink
Merge pull request #83 from puckel/1.8.1
Browse files Browse the repository at this point in the history
Bump to 1.8.1
  • Loading branch information
puckel authored May 10, 2017
2 parents 38e3da6 + 238b9ed commit e884e04
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VERSION 1.8.0
# VERSION 1.8.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.0
ARG AIRFLOW_VERSION=1.8.1
ARG AIRFLOW_HOME=/usr/local/airflow

# Define en_US.
Expand Down Expand Up @@ -55,7 +55,7 @@ RUN set -ex \
&& pip install pyOpenSSL \
&& pip install ndg-httpsclient \
&& pip install pyasn1 \
&& pip install airflow[crypto,celery,postgres,hive,hdfs,jdbc]==$AIRFLOW_VERSION \
&& pip install apache-airflow[crypto,celery,postgres,hive,hdfs,jdbc]==$AIRFLOW_VERSION \
&& pip install celery[redis]==3.1.17 \
&& apt-get remove --purge -yqq $buildDeps \
&& apt-get clean \
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.0'
- docker run puckel/docker-airflow version |grep '1.8.1'
8 changes: 4 additions & 4 deletions docker-compose-CeleryExecutor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- POSTGRES_DB=airflow

webserver:
image: puckel/docker-airflow:1.8.0
image: puckel/docker-airflow:1.8.1
restart: always
depends_on:
- postgres
Expand All @@ -30,7 +30,7 @@ services:
command: webserver

flower:
image: puckel/docker-airflow:1.8.0
image: puckel/docker-airflow:1.8.1
restart: always
depends_on:
- redis
Expand All @@ -41,7 +41,7 @@ services:
command: flower

scheduler:
image: puckel/docker-airflow:1.8.0
image: puckel/docker-airflow:1.8.1
restart: always
depends_on:
- webserver
Expand All @@ -57,7 +57,7 @@ services:
command: scheduler

worker:
image: puckel/docker-airflow:1.8.0
image: puckel/docker-airflow:1.8.1
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.0
image: puckel/docker-airflow:1.8.1
restart: always
depends_on:
- postgres
Expand Down

0 comments on commit e884e04

Please sign in to comment.