Collabora Online on a Nextcloud Server: Difference between revisions

From Leechfinger
Jump to navigationJump to search
Qais (talk | contribs)
Created page with "== Installing Collabora == This document will list all the steps to install Collabora for Nextcloud server. <syntaxhighlight lang="bash" line> # docker pull collabora/code # docker run -t -d -p 127.0.0.1:9980:9980 \ -e 'domain=cloud\\.nextcloud\\.com' \ --restart always \ --cap-add MKNOD \ collabora/code </syntaxhighlight>"
 
Qais (talk | contribs)
Line 5: Line 5:
# docker run -t -d -p 127.0.0.1:9980:9980 \
# docker run -t -d -p 127.0.0.1:9980:9980 \
     -e 'domain=cloud\\.nextcloud\\.com' \
     -e 'domain=cloud\\.nextcloud\\.com' \
    -e 'dictionaries=en' \
     --restart always \
     --restart always \
     --cap-add MKNOD \
     --cap-add MKNOD \
     collabora/code
     collabora/code
</syntaxhighlight>
</syntaxhighlight>

Revision as of 03:36, 21 May 2024

Installing Collabora

This document will list all the steps to install Collabora for Nextcloud server.

# docker pull collabora/code
# docker run -t -d -p 127.0.0.1:9980:9980 \
    -e 'domain=cloud\\.nextcloud\\.com' \
    -e 'dictionaries=en' \
    --restart always \
    --cap-add MKNOD \
    collabora/code