Skip to content

Commit

Permalink
Bump to 1.9.0-2
Browse files Browse the repository at this point in the history
  • Loading branch information
puckel committed Mar 1, 2018
1 parent 45fc751 commit ef712bc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# VERSION 1.9.0-1
# VERSION 1.9.0-2
# AUTHOR: Matthieu "Puckel_" Roisil
# DESCRIPTION: Basic Airflow container
# BUILD: docker build --rm -t puckel/docker-airflow .
Expand Down
14 changes: 7 additions & 7 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.9.0
image: puckel/docker-airflow:1.9.0-2
restart: always
depends_on:
- postgres
Expand All @@ -31,7 +31,7 @@ services:
# - REDIS_PASSWORD=redispass
volumes:
- ./dags:/usr/local/airflow/dags
# Uncomment to include custom plugins
# Uncomment to include custom plugins
# - ./plugins:/usr/local/airflow/plugins
ports:
- "8080:8080"
Expand All @@ -43,7 +43,7 @@ services:
retries: 3

flower:
image: puckel/docker-airflow:1.9.0
image: puckel/docker-airflow:1.9.0-2
restart: always
depends_on:
- redis
Expand All @@ -55,13 +55,13 @@ services:
command: flower

scheduler:
image: puckel/docker-airflow:1.9.0
image: puckel/docker-airflow:1.9.0-2
restart: always
depends_on:
- webserver
volumes:
- ./dags:/usr/local/airflow/dags
# Uncomment to include custom plugins
# Uncomment to include custom plugins
# - ./plugins:/usr/local/airflow/plugins
environment:
- LOAD_EX=n
Expand All @@ -74,13 +74,13 @@ services:
command: scheduler

worker:
image: puckel/docker-airflow:1.9.0
image: puckel/docker-airflow:1.9.0-2
restart: always
depends_on:
- scheduler
volumes:
- ./dags:/usr/local/airflow/dags
# Uncomment to include custom plugins
# Uncomment to include custom plugins
# - ./plugins:/usr/local/airflow/plugins
environment:
- FERNET_KEY=46BKJoQYlPPOexq0OhDZnIlNepKFf87WFwLbfzqDDho=
Expand Down
4 changes: 2 additions & 2 deletions 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.9.0
image: puckel/docker-airflow:1.9.0-2
restart: always
depends_on:
- postgres
Expand All @@ -17,7 +17,7 @@ services:
- EXECUTOR=Local
volumes:
- ./dags:/usr/local/airflow/dags
# Uncomment to include custom plugins
# Uncomment to include custom plugins
# - ./plugins:/usr/local/airflow/plugins
ports:
- "8080:8080"
Expand Down

0 comments on commit ef712bc

Please sign in to comment.