Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/script/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ case "$1" in
export AIRFLOW__CORE__LOAD_EXAMPLES="False"

install_requirements
airflow db init
airflow db migrate
if [ "$AIRFLOW__CORE__EXECUTOR" = "LocalExecutor" ] || [ "$AIRFLOW__CORE__EXECUTOR" = "SequentialExecutor" ]; then
# With the "Local" and "Sequential" executors it should all run in one container.
airflow scheduler &
Expand All @@ -145,7 +145,7 @@ case "$1" in
resetdb)
airflow db reset -y
sleep 2
airflow db init
airflow db migrate
;;
test-requirements)
# if S3_REQUIREMENTS_PATH
Expand Down