dosubot[bot] commented on issue #31911: URL: https://github.com/apache/superset/issues/31911#issuecomment-2599237820
<!-- Answer --> To configure the timezone in Apache Superset when using Docker, you can modify the Dockerfile to set the desired timezone. Here's a solution that was suggested in a similar closed issue: Add the following lines to your Dockerfile: ```dockerfile ENV TZ Europe/Amsterdam RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone ``` Replace `Europe/Amsterdam` with your desired timezone. This will set the timezone for the Superset logs and should help display the data in the correct timezone <sup>[[1]](https://github.com/apache/superset/issues/9743)</sup>. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/1aae4c03-9e96-485d-816c-8723d438ef92?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/1aae4c03-9e96-485d-816c-8723d438ef92?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/1aae4c03-9e96-485d-816c-8723d438ef92?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/1aae4c03-9e96-485d-816c-8723d438ef92?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/1aae4c03-9e96-485d-816c-8723d438ef92?feedback_type=hallucination) | [Other](https://app.dosu.dev/response-feedback/1aae4c03-9e96-485d-816c-8723d438ef92?feedback_type=other)</sup> -- 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]
