Enabling Community trace in Docker
The Community and STProxy traces can be used to troubleshoot problems with the Sametime. The traces capture the flow between the chat and meeting services.
To enable the trace modify the docker-compose.yml file. In the community:
section, locate the env_file:
statement.
community:
image: hclcr.io/st/chat-server:${BUILD_LEVEL}
restart: ${RESTART_POLICY}
env_file:
-custom.env
-debug.env
environment:
Add, the debug.env
parameter to the statement as shown in the following example.
community:
image: hclcr.io/st/chat-server:${BUILD_LEVEL}
restart: ${RESTART_POLICY}
env_file: - custom.env - debug.env
environment:
Parent Topic: Troubleshooting Sametime on Docker