After successful compilation of DocSpace Community version, I started all the needed backend docker containers, Client package, Login package and Editor packages with no issues.
I’ve logged into the app and see the interface working as expected.
Issues arise when I try to invite a user. System says user is invited, and there are no errors in the console or anywhere else. But invitations never arrive.
Can somebody recommend why this would be happening? Front-end shows no errors and shows a green toast that says invitation was sent, but it never arrives. Where can I look for the issue?
There is one problem
I don’t know how you built DocSpace
I suggest waiting for official instructions.
Let me remind you that the DocSpace installation for docker is still available in the 1-click install for Docker
modify /app/onlyoffice/src/build/build.backend.docker.sh
add “-sp /app/onlyoffice/src” to build-services.sh command
go into a build folder and replace “documentserver-de” to “documentserver” in .sh files so community version is compiled instead of development version
modify /app/onlyoffice/src/build/install/docker/.env and set
INSTALLATION_TYPE=COMMUNITY
modify /app/onlyoffice/src/build/build.backend.docker.sh and change the local_ip like to point to my ip:
local_ip=192.168.0.36
modify /app/onlyoffice/src/build/start/start.backend.docker.sh and change the local_ip like to point to my ip:
local_ip=192.168.0.36
After this everything works, but notifications / invitations to user do not due to the fact that onlyoffice-notify docker container is not running. Here is what is running after my commands:
After your tips above, I noticed that build/install/docker/docspace.overcome.yml has no entry for onlyoffice-notify container.
I’ve manually added the entry here:
Basically a copy of “onlyoffice-studio-notify”, with “Studio.Notify” replaced with “Notify”.
After this nodification, onlyoffice-notify container starts up.