rascasse83 commented on issue #20790:
URL: https://github.com/apache/superset/issues/20790#issuecomment-1227116925

   We have a docker deployment
   
   In the end, we had to follow the advice up above which was to fix the python 
function
   - fixed get_joined_tables function
   - rebuild the superset image (docker-compose build - after adding the word 
"build" inside the docker-compose file)
   - docker-compose up
   
   The database upgrade didn't work out of the box either (from 1.4 to 2.0), so 
we had to go into the superset_app container and run: 
   superset db upgrade
   
   Sample from our docker-compose file
   
   superset:
       env_file: docker/.env
       build: .
       # image: *superset-image
       container_name: superset_app
       command: ["/app/docker/docker-bootstrap.sh", "app"]
       restart: unless-stopped
       ports:
         - 8088:8088
       user: *superset-user
       depends_on: *superset-depends-on
       volumes: *superset-volumes
       environment:
         CYPRESS_CONFIG: "${CYPRESS_CONFIG}"
   
   


-- 
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]

Reply via email to