gwaldvogel commented on issue #8880: Fresh Docker-Compose Local Execution Fails URL: https://github.com/apache/incubator-superset/issues/8880#issuecomment-568200930 I have found a temporary workaround: Modify docker/.env, change: ``` # database engine specific environment variables # change the below if you prefers another database engine DATABASE_PORT=5432 DATABASE_DIALECT=postgresql POSTGRES_DB=${DATABASE_DB} POSTGRES_USER=${DATABASE_USER} POSTGRES_PASSWORD=${DATABASE_PASSWORD} ``` to ``` # database engine specific environment variables # change the below if you prefers another database engine DATABASE_PORT=5432 DATABASE_DIALECT=postgresql POSTGRES_DB=superset POSTGRES_USER=superset POSTGRES_PASSWORD=superset ``` Looks like the variables do not properly work in this situation. Beware: You also have to manually delete the db_home docker volume for the changes to have any effect.
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
