Files
docker_open5gs/hss
herlesupreeth cc2c596987 Do not use two methods of syncing time at the same time
Method 1:

      - /etc/timezone:/etc/timezone:ro
      - /etc/localtime:/etc/localtime:ro

Mount these inside container so that host and container time are in sync

Method 2:

Pass the TZ environment variable and run the following inside container

$ ln -snf /usr/share/zoneinfo/Europe/Berlin /etc/localtime && echo Europe/Berlin > /etc/timezone
2020-09-25 08:37:47 +02:00
..