How to change Weather Forecast for LOCAL Timezone?

Hi everyone,

I notice sometime my weather include Yesterday in Forecast which I find out it’s caused by the fact it use UTC time instead of local time.
I think it use Open-Meteo and do not see any settings for that.
So I would like to fix this and need help.

Thanks

1 Like

I run timedatectl on my pi where is HA then got my local time so it seam not the problem.

Well, I realize that my HA is running on Docker and might have its own time zone, so I’m checking… And there it is, found it.
Solved on my docker-compose.yml with:

    volumes:
      - ./config:/config
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
    environment:
      - TZ=America/New_York

Thanks