Harsh Agarwal
unread,Nov 14, 2024, 5:52:04 AM (7 days ago) Nov 14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to dcm4che
I have started recently on dcm4chee-arc using docker images and apparently new to docker as well, I am making changes to the logging.properties and changing the log level from INFO to DEBUG and when I open it again after restarting the docker it changes to initial INFO level. Please let me know what can be done.
I have tried following:
1. Docker Volume for logging.properties:
Create a docker volume to store the logging.properties file outside the container.
Mount the volume to the container at the location where it expects to find the logging.properties file (e.g., /opt/dcm4chee/conf).
Modify the logging.properties file within the volume, changing the log level to DEBUG.
Restart the docker container.
2. Environment Variable for Log Level:
Some docker images allow setting environment variables to override specific configurations.
Refer to the documentation of your specific dcm4chee-arc docker image to see if it supports setting the log level via an environment variable.
If supported, set the appropriate environment variable (e.g., DCM4CHEE_ARC_LOG_LEVEL) to DEBUG before starting the container.