Skip to content

Commit

Permalink
fix: enable installing docker/requirements-local.txt in docker-compos…
Browse files Browse the repository at this point in the history
…e-non-dev.yml (#13926)
  • Loading branch information
nytai authored Apr 3, 2021
1 parent e829aa5 commit 541d23b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker-compose-non-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ services:
env_file: docker/.env-non-dev
image: *superset-image
container_name: superset_app
command: ["/app/docker/docker-bootstrap.sh", "app-gunicorn"]
user: "root"
restart: unless-stopped
ports:
- 8088:8088
Expand Down
3 changes: 3 additions & 0 deletions docker/docker-bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,7 @@ elif [[ "${1}" == "beat" ]]; then
elif [[ "${1}" == "app" ]]; then
echo "Starting web app..."
flask run -p 8088 --with-threads --reload --debugger --host=0.0.0.0
elif [[ "${1}" == "app-gunicorn" ]]; then
echo "Starting web app..."
/app/docker/docker-entrypoint.sh
fi

0 comments on commit 541d23b

Please sign in to comment.