GitHub user dosubot[bot] added a comment to the discussion: docker compose failed
<!-- Answer --> The error `Can't locate revision identified by '363a9b1e8992'` means your database expects a migration that isn't present in your current codebase. This usually happens if you have leftover Docker volumes from a previous Superset or PostgreSQL version, or if the migration history changed recently in the master branch. The migration script for this revision does exist in the codebase, so it's not missing from the repository. To fix this, remove your old Docker volumes so a fresh, compatible database is initialized: ```sh docker compose -f docker-compose-image-tag.yml down -v docker compose -f docker-compose-image-tag.yml up ``` If you continue to see the error, double-check that your codebase and Docker image are both up to date and from the same branch/tag, and that all migration scripts are present in `superset/migrations/versions/` ([reference](https://github.com/apache/superset/issues/34284)). <!-- 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/aeff8859-a166-4074-bf9d-27c202deb2a6?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/aeff8859-a166-4074-bf9d-27c202deb2a6?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/aeff8859-a166-4074-bf9d-27c202deb2a6?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/aeff8859-a166-4074-bf9d-27c202deb2a6?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/aeff8859-a166-4074-bf9d-27c202deb2a6?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/aeff8859-a166-4074-bf9d-27c202deb2a6?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/aeff8859-a166-4074-bf9d-27c202deb2a6?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github)& nbsp;[](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/34287) GitHub link: https://github.com/apache/superset/discussions/34287#discussioncomment-13866625 ---- 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]
