Closed bnjmnjrk closed 1 year ago
i have managed to add a new language, doing the following:
host:
$ unzip -d dict-<some-abbreviation> <lang-extension>.oxt
# dockerfile: copy dict-<some-abbreviation> /opt/collaboraoffice/share/extensions/dict-<lang-abbr>
inside the container:
$ ls /opt/collaboraoffice/share/extensions/dict-<some-abbr>
# this will show what language abbriviation is used internally
$ vim /etc/coolwsd/coolwsd.xml
# add the abbriviation you learned from 'ls' to "allowed languages"
p.s. the # means a bash comment, not root
Is your feature request related to a problem? Please describe. I would like to install an extension in collabora code. For this I have written the following dockefile:
after
docker build -t container .
anddocker run --rm -it -p 9980:9980 -e "extra_params=--o:ssl.enable=false" container bash
I tried to install the extension with unopkg, but since the installation ends up in the home directory of the user "cool", the installation does nothing. I tried to move the uno_packages directory to the /opt/collabora/share directory but that didn't change anything. I have always checked the results with a nextcloud instance. I also tried to unpack the extension locally and put it in /opt/collaboraoffice/extensions but that didn't work either. After searching the internet for a long time for a solution, I got the feeling that there is still no solution for this.Describe the solution you'd like I would like to know if this feature already exists, and if not i would be happy if it would be implemented