DocSpace version: 3.6.1.1
Type of installation of the DocSpac: Docker version 29.2.0, i use this guide https://helpcenter.onlyoffice.com/docspace/installation/docspace-community-install-script.aspx
OS: Debian 13 x86_64
Browser version: Chrome 144
What did I do:
Following the guide in the link above, I downloaded docspace-install.sh, and then used the
bash docspace-install.sh docker --docspacehost office.example.dev --certfile /etc/TLS/fullchain.cer --certkeyfile /etc/TLS/key.key
command to install DocSpace.
Unexpected behavior:
I can access DocSpace via https://office.example.dev, and registration and permission assignment all work fine. However, when I click on an existing file, it doesn’t open the editing interface in the browser, instead, it downloads the file.
What did I found:
container onlyoffice/documentserver:9.2.1.1 is always in an unhealthy state. There were no errors in the logs in docker logs, even when I clicked on the file.
container onlyoffice/docspace-doceditor:3.6.1.1 showed numerous errors about being unable to connect to something, which I’ve forgotten.
How did I fix it:
Insert the line read -r -p "press enter..." _ on line 136 of the docspace-install.sh to pause the script execution, which allows me to modify install-Docker.sh. Insert same read -r -p "press enter..." _ after line 658 of the install-Docker.sh(after unzip docker.tar.gz, befor else), finally, modify /app/onlyoffice/ds.yml to manually specify onlyoffice/documentserver to version 9.1.
After the installation was complete, everything worked fine. Then, I used bash docspace-install.sh docker -u true to upgrade onlyoffice/documentserver to the latest version 9.2.1.1, and everything still worked correctly.
BTW, the -dsv parameter is completely broken; using this parameter to specify version 9.1 will cause other containers to also use version 9.1, which is doesn’t exist. And -mkparameter is working, but still resulted in the original account being unable to log in directly after restoring the backup; a password reset was required.

