You might need to run the script specifying some additional parameters, for example, if you want to install ONLYOFFICE Docs on a certain port etc.
To display the list of all available script parameters, use the following command:
bash docs-enterprise-install.sh -h
bash docs-developer-install.sh -h
Below, there are some examples on how to perform certain tasks using script parameters.
To install ONLYOFFICE Docs on a certain port, use the -dp
parameter. By default, port 80 is used.
bash docs-enterprise-install.sh -dp 8080
bash docs-developer-install.sh -dp 8080
To install ONLYOFFICE Docs from a certain Docker image stored in the
repository
repository, use the -di
parameter.
bash docs-enterprise-install.sh -di onlyoffice/documentserver-ee
bash docs-developer-install.sh -di onlyoffice/documentserver-de
To install a certain version of ONLYOFFICE Docs, use the -dv
parameter. If this parameter is omitted, the latest version available in the repository will be installed.
A certain version can be installed if you select installation with Docker. If you select installation from DEB/RPM packages, the latest version will be installed.
bash docs-enterprise-install.sh -dv 6.2.2
bash docs-developer-install.sh -dv 6.2.2
To update ONLYOFFICE Docs, use the -u
parameter specifying the true
value.
bash docs-enterprise-install.sh -u true
bash docs-developer-install.sh -u true