GitHub user dosubot[bot] added a comment to the discussion: How to config the public dashboard
<!-- Answer --> To enable public dashboards (anonymous access), add this to your config file: ```python PUBLIC_ROLE_LIKE = "Gamma" ``` This gives anonymous users Gamma-like permissions so they can view dashboards without logging in. Setting only `DASHBOARD_RBAC` does not make dashboards public—it just changes how dashboard permissions are checked ([source](https://github.com/apache/superset/discussions/31949), [more](https://github.com/apache/superset/issues/33698)). For your login issue: if you can't log in with admin/admin, it's likely because the database volume is persistent and the admin user wasn't (re)created, or the DB wasn't initialized. Inside the running container, try: ```bash superset fab list-users superset fab create-admin superset db upgrade superset init ``` This will show existing users and let you (re)create the admin user if needed ([source](https://github.com/apache/superset/issues/32187)). For Docker config overrides, the recommended way is to put your config as `superset_config_docker.py` in `./docker/pythonpath_dev/` on your host. Your current method with `SUPERSET_CONFIG_PATH` can work, but make sure the path is correct and the file is loaded ([source](https://github.com/apache/superset/issues/33702)). If you still can't log in, try stopping Superset, removing Docker volumes (to reset the DB), and starting fresh. Always check the container logs for errors during startup and login attempts. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/bfc0b0cf-7d91-4fb7-9390-744e1bf79a97?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/bfc0b0cf-7d91-4fb7-9390-744e1bf79a97?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/bfc0b0cf-7d91-4fb7-9390-744e1bf79a97?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/bfc0b0cf-7d91-4fb7-9390-744e1bf79a97?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/bfc0b0cf-7d91-4fb7-9390-744e1bf79a97?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/bfc0b0cf-7d91-4fb7-9390-744e1bf79a97?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/bfc0b0cf-7d91-4fb7-9390-744e1bf79a97?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/34044) GitHub link: https://github.com/apache/superset/discussions/34044#discussioncomment-13647781 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
