I have a container with a running program inside tomcat. I need to change date only in this container and test my program behaviour. I have time sensitive logic, and sometim
I was having the same problem with my jenkins docker instance following steps fixed my problem
exec into container
docker exec -it 9d41c699a8f4 /bin/bash
See time zone cat /etc/timezone : out put Etc/UTC
cat /etc/timezone
set new time zone, with nano : Asia/Colombo (your timezone here)
Restart the container