This section steps must be performed for each server used for the ONLYOFFICE Workspace Enterprise Edition components installation.
Getting ONLYOFFICE Workspace Enterprise Edition script
Download ONLYOFFICE Workspace Enterprise Edition Docker script file. You can do that using our site download page. Or the direct download link can be used, if it is more convenient for you:
wget https://download.onlyoffice.com/install/workspace-enterprise-install.sh
Once the download is finished, you can start the installation process.
For the ONLYOFFICE Workspace Enterprise Edition to be able to run the Docker service is necessary. The installation script will check if it is present on the computer and its version is not less than the minimal required. Otherwise the Docker will be installed or updated automatically.
Docker specifies Google DNS servers by default. If your
ONLYOFFICE Workspace Enterprise Edition server is not going to have access to the Internet, we recommend that you change the default Docker DNS address to the address of your local DNS server. To do that go to the
/etc/default/docker
file and change the IP address in the following line to the IP address of a DNS server in your local network:
docker_OPTS="--dns 8.8.8.8"
For the RPM based operating systems like CentOS:
- Create the
/etc/docker/daemon.json
configuration file with the following contents:
{ "dns" : [ "8.8.8.8" ] }
- Restart the Docker service:
sudo systemctl restart docker.service