From what I investigated it is partly a problem of Pterodactyl because now it is necessary to install ``tzdata`` in the docker. Here's how parkervcp does it from what I saw at https://github.com/parkervcp/yolks in [entrypoint.sh](https://github.com/Exiled-Team/pterodactyl/blob/main/Docker/entrypoint.sh) ```docker # Default the TZ environment variable to UTC. TZ=${TZ:-UTC} export TZ ``` and in [Dockerfile](https://github.com/Exiled-Team/pterodactyl/blob/main/Docker/Dockerfile) ```bash RUN apt-get update && apt-get install -y tzdata ```