tzdata missing
bejaranoo opened this issue · 1 comments
bejaranoo commented
fixed by issuing:
apk add --no-cache tzdata
but obviously it will be lost when you restart the container, any permanent solution would be appreciated
scolbeck commented
You could set the container's timezone to match the host via these volume mappings. Here is an example for Docker compose:
volumes:
- '/data:/home/user'
- '/etc/timezone:/etc/timezone:ro'
- '/etc/localtime:/etc/localtime:ro'