I want to set the timezone for the Docker container to Europe/Paris, like the host system. So I changed app.yml:
run:
- replace:
filename: "/etc/timezone"
from: "Etc/UTC"
to: "Europe/Paris"
This change works but when I enter date in the container, the timezone is still UTC.
How can I change the timezone? Any ideas/hints?