Upon installing OnlyOffice with Docker by the provided script it ends up with the following error:
Docker pull argument exception: repository=onlyoffice/documentserver, tag=
It’s not clear what causes this error but the reason is obvious:
there is no curl installed in the system or your machine can not connect to Docker Hub with curl
command.
Install curl
with
1 |
yum -y install curl |
or
1 |
apt-get install curl |
Also check that Docker Hub is reachable.
Good luck!