You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Everytime I try to restart, either by clearing the volumes or let's say by clearing the node_modules specified in the Erro rMessage: ENOTEMPTY, I still keep getting issues like the attached image. Can someone help me here?
Screenshots/recordings
Superset version
master / latest-dev
Python version
Not applicable
Node version
18 or greater
Browser
Chrome
Additional context
No response
Checklist
I have searched Superset docs and Slack and didn't find a solution to my problem.
I have searched the GitHub issue tracker and didn't find a similar bug report.
I have checked Superset's logs for errors and if I found a relevant Python stacktrace, I included it here as text in the "additional context" section.
The text was updated successfully, but these errors were encountered:
Hey @brianndjojo! 👋 I'm here to help you with your Docker Compose issue. I can assist with bug fixes, answer questions, and guide you on how to become a contributor.
I found a similar unsolved discussion titled "Installing dependencies in docker the process gets stuck" on the Superset GitHub repository, which might be related to your issue [1]. However, it does not provide a solution.
Regarding your issue with the ENOTEMPTY error during the npm build process, here are a few suggestions that might help:
Update npm: The logs suggest updating npm from version 10.8.2 to 11.0.0. You can do this by adding a step in your Dockerfile to update npm before running the build commands.
Clean up Residual Files: Ensure that all residual files and directories, especially node_modules, are completely removed before rebuilding. You can do this by running:
docker-compose down -v
docker system prune --volumes
Check Directory Permissions: Ensure that the directory permissions are correctly set, as permission issues can sometimes cause ENOTEMPTY errors.
Docker Cache: Try building without using the cache to ensure that no stale files are causing the issue:
docker-compose build --no-cache
These steps might help resolve the issue you're facing with the Docker setup for Superset.
Bug description
Everytime I try to restart, either by clearing the volumes or let's say by clearing the node_modules specified in the Erro rMessage: ENOTEMPTY, I still keep getting issues like the attached image. Can someone help me here?
Screenshots/recordings
Superset version
master / latest-dev
Python version
Not applicable
Node version
18 or greater
Browser
Chrome
Additional context
No response
Checklist
The text was updated successfully, but these errors were encountered: