'Apache superset dev mode

If i run non-dev mode: docker-compose -f docker-compose-non-dev.yml up then everything is fine. But run in dev mode: docker-compose up - front is not displayed correctly.enter image description here How to fix it?



Solution 1:[1]

if you run docker-compose up it builds the frontend assets which takes time. Check the logs to follow along on the build progress. If the frontend container is dying early, I recommend increasing the RAM dedicated to Docker to at least 8 GB (especially if you're on Mac OS).

The non-dev.yml one skips building the frontend assets.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Srini Kadamati