rusackas commented on issue #31360: URL: https://github.com/apache/superset/issues/31360#issuecomment-2532188153
Ok... so we're definitely having some docker problems on `master` - I ran into this as well as the person on the [thread](https://github.com/apache/superset/discussions/31357) Dosu linked to. I'm hopefully that others (including perhaps @mistercrunch) can help address the underlying docker compose issues, but here's a workaround that helped me get a dev environment back up and running... 1) Spin up `docker compose` as normal, and it'll have problems initializing the db/migrations/user/examples... but it'll run. 2) Go into a separate terminal and do `docker exec -it superset_app /bin/bash` 3) When you get a command prompt, run the following commands: ``` pip install -e . superset db upgrade superset init superset fab create-admin superset load-examples ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
