skip to Main Content

I am trying to run Apache Superset locally. I am following these instructions.
When I write the command "docker compose up", all the containers seem to be running okay, but when I check the browser on localhost 8088, I just get a loading page:.

With the command docker-compose -f docker-compose-non-dev.yml up, the page loads.

What I want to do at the end of the day is to modify superset’s frontend.

2

Answers


  1. I had a similar issue, restarting the docker service fixed it. Are you running the default SQLITE database or a local instance of a database?

    Login or Signup to reply.
  2. I had a similar issue, and pulled a different version (2.0.0-dev) of the image instead of the default latest as the latest docker image has lots of bugs:

    Modify the docker compose file with "x-superset-image: &superset-image apache/superset:2.0.0-dev",

    Use Postgre v10 on the db section.
    db:
    env_file: docker/.env-non-dev
    image: postgres:10

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search