Where is UserInfoConfig.xml in sametime12 on docker?

Where exactly is the UserInfoConfig.xml file located in Sametime 12FP1 on docker? can't find it in my sametime_install directory

https://help.hcltechsw.com/sametime/12/admin/admin_st_buscard.html

Please check the below path on the docker to know if the said file present.

/local/notesdata

Thank you.

Regards

Shrikant J

Hi Shrikant

It isn't. So do i need to create that folder on my docker host and create the file?

Hello Kenneth,

You need to copy the userinfoconfig.xml file from container first as per below command
Copy the existing files out of the container:


docker cp <container_name>:/local/notesdata/UserInfoConfig.xml

Now make changes and then update docker-compose.yaml by adding


volumes:
- ./UserInfoConfig.xml:/local/notesdata/UserInfoConfig.xml
networks:
- sametime.test

Hope this helps.

You can find it in the sametime_community_1 container.

Run the command: docker ps




It will give you a list of containers, note the container number for sametime_community_1.


Then enter the command to copy the file from the container to local for example:


docker cp 4c6294218DDC:/local/notesdata/UserInfoConfig.xml /local/notesadta/UserInfoConfig.xml

Hi Kenneth,

In addition to this query.

You may invoke the following command in docker container
- docker exec -it hcl_community_1 bash

It will put you inside the notesdata.

Hope this helps.

Kind regards,

Isagani