zajcomm commented on issue #24685: URL: https://github.com/apache/superset/issues/24685#issuecomment-1703647805
Ok so this fixed it for me 🐅. please let me know if it works for you . Accessing http://localhost:8088 after setting up Apache Superset with Docker returned a 404 error for loading.gif and the page appeared without CSS. The solution that worked for me was to **Rebuild the Docker images and restart the containers:** - Stop the running Docker containers: `docker-compose down` - Navigate to the superset directory. `cd superset` my default. - Rebuild and start the containers: `docker-compose up --build` # simply adding the `--bulid` to the previous way. thats it. you can check Docker logs for any error messages: docker-compose logs. ------------------ One thing I noticed however, i got some other warnings in the logs during the build process. For example, warnings in the superset_node container logs related to missing modules or export not found, such as: ``` WARNING in ./node_modules/@data-ui/shared/esm/enhancer/WithTooltip.js 3:60-78 export 'withTooltipPropTypes' (imported as 'vxTooltipPropTypes') was not found in '@vx/tooltip/build/tooltips/TooltipWithBounds' (possible exports: __esModule, default) ``` and ``` WARNING in ./src/utils/textUtils.ts 21:11-44 Module not found: Error: Can't resolve '../../../superset_text' in '/app/superset-frontend/src/utils' ``` These warnings indicate that there are missing dependencies or incorrectly referenced modules in the code. While these warnings might not cause the application to fail, they should be addressed to ensure the application works as expected. -- 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]
