I am European
export BOOTSTRAP_TIMEZONE="UTC +2" I can not check, something is wrong with Github right now. If that is not right what should I change?
It's quite common for servers to be set to UTC in Europe. But not wholly ubiquitous. Only you can decide if using something other than UTC is a good idea.
Timezones are a rabbit hole of utter madness where the more you know the more you realise you have to learn.
Unless you have a very specific reason why you know you MUST set your timezone to a fixed UTC offset you should always use timezones from the IANA timezone database.
You can commonly lookup the named timezones from wikipedia here or use tzselect. In the case of "Berlin" the timezone you are looking for is: Europe/Berlin.
Unlike almost every other solution, the IANA database is kept up to date with political changes etc. It's indexed by geographic location [by city] which works for almost everywhere in the world. There are always exceptions.
So if the local government in Berlin decide to change timezone (yes this type of thing happens) then a software patch will most likely fix the difference.
As long as you keep your software up to date and as long as the local legislature gives enough warning, this should mean your server is always in the right time zone.
tzselecton any machine to figure out the correct time zone string for you. But, what I'd consider a fair warning: Honestly, don't use anything but"UTC"on a server machine, especially not if its responsible for spawning containers of all purposes. You can still set a timezone for any service within if you need that for some reason, but localizing the orchestrator's time zone sounds more trouble than it's worth! See this question for discussions on that.tzselectanswered your question. You might want to post an answer that explains what you did for posteriority, so you can close this question (and also, get some points, as a side bonus). I still maintain, not using a timezone but UTC is probably the right choice, but you do you.