I'm attempting to setup Superset on an AWS t3.micro instance. When running:
cd incubator-superset/contrib/docker && \
docker-compose run --rm superset ./docker-init.sh
The command hangs during the webpack build phase.
The build will complete.
The command hangs with the following output:
# ...
> https://www.justgiving.com/refugee-support-europe
added 2514 packages in 31.406s
> [email protected] build /home/superset/superset/assets
> NODE_ENV=production webpack --mode=production --colors --progress
clean-webpack-plugin: /home/superset/superset/assets/dist has been removed.
Starting type checking service...
Using 1 worker with 2048MB memory limit
90% chunk assets processing
N/A
cd incubator-superset/contrib/dockerdocker-compose run --rm superset ./docker-init.sh(please complete the following information):
Ubuntu Xenial 16.04mastern/an/an/aMake sure these boxes are checked before submitting your issue - thank you!
Issue-Label Bot is automatically applying the label #bug to this issue, with a confidence of 0.65. Please mark this comment with :thumbsup: or :thumbsdown: to give our bot feedback!
Links: app homepage, dashboard and code for this bot.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. For admin, please label this issue .pinned to prevent stale bot from closing the issue.
Hi @jonlambert :) I got the very same issue building an image with docker, how did you solved it? Did you changed something in the Dockerfile or the docker-compose.yml?
Hi, to whomsoever it may help, I was able to get it working after increasing the total runtime memory available to docker from 2GB to 4GB.
Reference: https://docs.docker.com/docker-for-mac/
Hi, to whomsoever it may help, I was able to get it working after increasing the total runtime memory available to docker from 2GB to 4GB.
Yes, this did it for me. Thanks!!!