Currently the docker image only logs the uwsgi information to stdout (which can be accessed by docker logs) but this information is not really usefull as it does not contain any tryton related information.
My idea was to mount a docker volume so logs are accessible from the host and can be reviewed latter but the problem I found is that docker images are running using trytond user and this causes a permision error when accessing volumes as they are only accessible by root. This can be solved by creating the logs directory in the docker image and changing it’s permisions so the trytond user can write and read on this directory.
How are you handling logging files in tryton when using docker?
Do you thing will be a good improvement to add a default logging configuration on the tryton-docker images?