docker-compose, set localization in docker containers

/etc/localtime and /etc/timezone are used for localization
This commit is contained in:
Martin Filser 2021-10-13 08:42:08 +02:00
parent b12312f998
commit d7479c742f
2 changed files with 9 additions and 2 deletions

View file

@ -111,6 +111,8 @@ services:
expose:
- 27017
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- wekan-db:/data/db
- wekan-db-dump:/dump
@ -657,6 +659,9 @@ services:
#---------------------------------------------------------------------
depends_on:
- wekandb
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
#---------------------------------------------------------------------------------
# ==== OPTIONAL: SHARE DATABASE TO OFFICE LAN AND REMOTE VPN ====