dosubot[bot] commented on issue #34749: URL: https://github.com/apache/superset/issues/34749#issuecomment-3199871559
<!-- Answer --> This happens because the docker-compose-image-tag.yml file defaults to the `latest-dev` tag if the `TAG` environment variable isn't set, which can pull an older image like 4.1.3 instead of 5.0.0. The version shown in the UI reflects the actual version running in the container, based on build metadata files inside the image—not just the tag you expect to use. To fix this, set the environment variable before starting Superset: ```sh export TAG=5.0.0 docker compose -f docker-compose-image-tag.yml up ``` If you still see the wrong version, try removing any cached Superset images with `docker image rm apachesuperset.docker.scarf.sh/apache/superset:latest-dev` and re-pull. For more details, see [this issue](https://github.com/apache/superset/issues/34643) and [the relevant PR](https://github.com/apache/superset/pull/34324). The UI version display is robust and always reflects the backend config, which reads from files like `version_info.json` or `package.json` inside the container. If the image was built or tagged incorrectly, you'll see the mismatch in the UI ["here"](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/config.py). For future upgrades, always set the `TAG` variable to the exact version you want, and verify the image version after pulling. <!-- 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/dffbf417-7677-42cd-b4c5-737f515f32b9?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/dffbf417-7677-42cd-b4c5-737f515f32b9?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/dffbf417-7677-42cd-b4c5-737f515f32b9?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/dffbf417-7677-42cd-b4c5-737f515f32b9?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/dffbf417-7677-42cd-b4c5-737f515f32b9?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/dffbf417-7677-42cd-b4c5-737f515f32b9?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/dffbf417-7677-42cd-b4c5-737f515f32b9?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=githu b) [](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/issues/34749) -- 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]
