Is it possible change date in docker container?

前端 未结 6 1139
难免孤独
难免孤独 2020-12-01 02:35

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

6条回答
  •  情话喂你
    2020-12-01 03:24

    I was having the same problem with my jenkins docker instance following steps fixed my problem

    1. exec into container

      docker exec -it 9d41c699a8f4 /bin/bash

    2. See time zone cat /etc/timezone : out put Etc/UTC

    3. set new time zone, with nano : Asia/Colombo (your timezone here)

    4. Restart the container

提交回复
热议问题