GitHub user dosubot[bot] added a comment to the discussion: unable to setup using docker compose for 5.0.0
<!-- Answer --> This is a [known issue with Superset Docker setups](https://github.com/apache/superset/issues/36311) - the blank page with broken images typically indicates frontend assets haven't loaded properly. A few things to check: 1. **Wait for frontend build**: The webpack build can take 5-10 minutes after containers start. Monitor progress with: ```bash docker logs -f superset_app ``` 2. **Check the port**: If you're using the dev `docker-compose.yml`, [try accessing `http://localhost:9000` instead of port 8088](https://github.com/apache/superset/issues/32898) - recent versions changed the default dev port. 3. **Check browser console**: Press F12 and look for 404 errors on `/static/assets/` paths - this confirms missing frontend assets. If none of that helps, try a complete clean rebuild: ```bash docker compose down -v docker image prune -a docker compose build docker compose up ``` Then wait 5-10 minutes for the frontend build to complete before accessing the UI. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/3cdc6def-90d8-4b01-8927-5d0c16205399?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/3cdc6def-90d8-4b01-8927-5d0c16205399?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/3cdc6def-90d8-4b01-8927-5d0c16205399?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/3cdc6def-90d8-4b01-8927-5d0c16205399?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/3cdc6def-90d8-4b01-8927-5d0c16205399?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/3cdc6def-90d8-4b01-8927-5d0c16205399?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/3cdc6def-90d8-4b01-8927-5d0c16205399?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github) [](https://cursor.com/link/prompt?text=This%20is%20a%20%5Bknown%20issue%20with%20Superset%20Docker%20setups%5D%28https%3A//github.com/apache/superset/issues/36311%29%20-%20the%20blank%20page%20with%20broken%20images%20typically%20indicates%20frontend%20assets%20haven%27t%20loaded%20properly.%20A%20few%20things%20to%20check%3A%0A%0A1.%20%2A%2AWait%20for%20frontend%20build%2A%2A%3A%20The%20webpack%20build%20can%20take%205-10%20minutes%20after%20containers%20start.%20Monitor%20progress%20with%3A%0A%20%20%20%60%60%60bash%0A%20%20%20docker%20logs%20-f%20superset_app%0A%20%20%20%60%60%60%0A%0A2.%20%2A%2ACheck%20the%20port%2A%2A%3A%20If%20you%27re%20using%20the%20dev%20%60docker-compose.yml%60%2C%20%5Btry%20accessing%20%60http%3A//localhost%3A9000%60%20instead%20of%20port%208088%5D%28https%3A//gi thub.com/apache/superset/issues/32898%29%20-%20recent%20versions%20changed%20the%20default%20dev%20port.%0A%0A3.%20%2A%2ACheck%20browser%20console%2A%2A%3A%20Press%20F12%20and%20look%20for%20404%20errors%20on%20%60/static/assets/%60%20paths%20-%20this%20confirms%20missing%20frontend%20assets.%0A%0AIf%20none%20of%20that%20helps%2C%20try%20a%20complete%20clean%20rebuild%3A%0A%60%60%60bash%0Adocker%20compose%20down%20-v%0Adocker%20image%20prune%20-a%0Adocker%20compose%20build%0Adocker%20compose%20up%0A%60%60%60%0A%0AThen%20wait%205-10%20minutes%20for%20the%20frontend%20build%20to%20complete%20before%20accessing%20the%20UI.) [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/38439) GitHub link: https://github.com/apache/superset/discussions/38439#discussioncomment-16007747 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
