I will go more into detail how i fixed this problem for me. Basically I combined some of the advice scattered around these forums (thank you guys)
-
docker ps
look for<containerid>
for “pschmitt/owncloud “/usr/bin/run.sh”” -
docker stop
<containerid>
-
find /. -name run.sh
provides you with a list of all available “run.sh”, look for the ones containing your<containerid>
in their path
example: …/subvolumes/<containerid>
54f154df5454h4564ds/usr/bin/run.sh, reduced the amount to 4 files for me -
sudo nano each of these files and search file for “localtime” (ctrl + w)
example: sudo nano …/subvolumes/<containerid>
54f154df5454h4564ds/usr/bin/run.sh -
change “localtime” to “localtime2”, save and exit file (ctrl + o, ctrl + x)
for me it was file “…/usr/bin/run.sh” (not “…-init/usr/bin/run.sh”) -
docker start
<containerid>