Ubuntu 16 TLS + onlyoffice + docker + self signed HTTPS

https://helpcenter.onlyoffice.com/server/docker/opensource/opensource-script-installation.aspx
Ubuntu 16 LTS

wget http://download.onlyoffice.com/install/opensource-install.sh
bash opensource-install.sh -md "yourmailserverdomain.com"

This works but docker needs more resources than a native installation:

System requirements

  • CPU: dual core 2 GHz or better
  • RAM: 6 GB or more
  • HDD: at least 40 GB of free space
  • Additional Requirements: at least 6 GB of swap
  • OS: amd64 Linux distribution with kernel version 3.10 or later

HTTPS – Self signed + docker

cd /app/onlyoffice/CommunityServer/data/certs
openssl genrsa -out onlyoffice.key 2048
openssl req -new -key onlyoffice.key -out onlyoffice.csr
openssl x509 -req -days 365 -in onlyoffice.csr -signkey onlyoffice.key -out onlyoffice.crt
openssl dhparam -out dhparam.pem 2048
reboot
Ubuntu 16 TLS + onlyoffice + docker + self signed HTTPS was last modified: June 3rd, 2017 by tabcom