Fix articles for Docker version

This commit is contained in:
Svetlana Maleeva 2023-09-26 15:46:48 +03:00
parent bfad269e32
commit 3119f4e8c2
7 changed files with 29 additions and 29 deletions

View File

@ -271,10 +271,10 @@
</tr>
</tbody>
</table>
<p>This parameter can be used to specify a name of the <b>ONLYOFFICE Docs</b> image that a container should be started from. The specified image should be stored in our official public repository on <a target="_blank" class="links" href="https://hub.docker.com/<%= ((BasePage)Page).VersionName %>/">Docker Hub</a>.</p>
<p>This parameter can be used to specify a name of the <b>ONLYOFFICE Docs</b> image that a container should be started from. The specified image should be stored in our official public repository on <a target="_blank" class="links" href="https://hub.docker.com/u/onlyoffice">Docker Hub</a>.</p>
<h4>Example</h4>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -docsi onlyoffice4enterprise/documentserver-ee
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -docsi onlyoffice/documentserver-ee
</code></pre>
</span>
<span class="community_display">
@ -359,7 +359,7 @@
</table>
<p>This parameter allows you to change the port on which <b>ONLYOFFICE DocSpace</b> will run. By default, port 80 is used.</p>
<h4>Example</h4>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -cp 8080
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ep 8080
</code></pre>
</div>
</div>
@ -495,10 +495,10 @@
</table>
<p>These parameters allow you to switch the portal to HTTPS. They can be used for the Docker version only.</p>
<h4>Example</h4>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh --letsencryptmail user@example.com --letsencryptdomain yourdomain.com</code></pre>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh docker --letsencryptmail user@example.com --letsencryptdomain yourdomain.com</code></pre>
<p>This will automatically create and install the <a target="_blank" href="https://letsencrypt.org/">letsencrypt.org</a> CA-signed certificate to your server and restart the NGINX service for the changes to take effect.</p>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh --certfile path --certkeyfile path</code></pre>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh docker --certfile path --certkeyfile path</code></pre>
<p>This will apply your own SSL certificate.</p>
</div>

View File

@ -26,7 +26,7 @@
<div class="block_of_step">
<div class="screen_text">
<p>To create the letsencrypt certificate, run the installation script with the following parameters:</p>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh --letsencryptmail user@example.com --letsencryptdomain yourdomain.com</code></pre>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh docker --letsencryptmail user@example.com --letsencryptdomain yourdomain.com</code></pre>
<p>Where:</p>
<ul>
<li><code>letsencryptmail</code> is the email used for registration and recovery contact. Use comma to register multiple emails, for example: u1@example.com,u2@example.com.</li>
@ -34,7 +34,7 @@
</ul>
<p>The script will automatically create and install the <a target="_blank" href="https://letsencrypt.org/">letsencrypt.org</a> CA-signed certificate to your server and restart the NGINX service for the changes to take effect.</p>
<p>Alternatively, you can launch switching to HTTPS manually from the <code>/app/onlyoffice/config/docspace-ssl-setup</code> file:</p>
<pre><code>bash /app/onlyoffice/config/docspace-ssl-setup --letsencryptmail user@example.com --letsencryptdomain yourdomain.com</code></pre>
<pre><code>bash /app/onlyoffice/config/docspace-ssl-setup user@example.com yourdomain.com</code></pre>
<p>Now your portal should be available via the <span class="param-type">https://</span> address.</p>
</div>
</div>
@ -43,14 +43,14 @@
<div class="block_of_step">
<div class="screen_text">
<p>To use your own certificates, run the installation script with the following parameters:</p>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh --certfile path --certkeyfile path</code></pre>
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh docker --certfile path --certkeyfile path</code></pre>
<p>Where:</p>
<ul>
<li><code>certfile</code> is the path to the certificate file for the domain.</li>
<li><code>certkeyfile</code> is the path to the private key file for the certificate.</li>
</ul>
<p>Alternatively, you can launch switching to HTTPS manually from the <code>/app/onlyoffice/config/docspace-ssl-setup</code> file:</p>
<pre><code>bash /app/onlyoffice/config/docspace-ssl-setup --certfile path --certkeyfile path</code></pre>
<pre><code>bash /app/onlyoffice/config/docspace-ssl-setup -f /app/onlyoffice/fullchain.pem /app/onlyofficeprivkey.pem</code></pre>
<p>Now your portal should be available via the <span class="param-type">https://</span> address.</p>
</div>
</div>

View File

@ -77,19 +77,19 @@
</tr>
</tbody>
</table>
<p>These parameters can be used to specify a name of the image that a container should be started from. The specified image should be stored in our official public repository on <a target="_blank" class="links" href="https://hub.docker.com/<%= ((BasePage)Page).VersionName %>/">Docker Hub</a>. <span class="enterprise_display">If you have downloaded a <b>.tar.gz</b> archive from the <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Downloads</a> page, you can also specify a path to this <b>.tar.gz</b> file stored on your machine.</span></p>
<p>These parameters can be used to specify a name of the image that a container should be started from. The specified image should be stored in our official public repository on <a target="_blank" class="links" href="https://hub.docker.com/u/onlyoffice">Docker Hub</a>. <span class="enterprise_display">If you have downloaded a <b>.tar.gz</b> archive from the <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Downloads</a> page, you can also specify a path to this <b>.tar.gz</b> file stored on your machine.</span></p>
<h4>Example</h4>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice4enterprise/documentserver-ee -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver-ee -ics true -icp true
</code></pre>
</span>
<span class="community_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice/documentserver -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver -ics true -icp true
</code></pre>
</span>
<p>This will run a container from the specified <b>ONLYOFFICE Docs</b> image stored in the repository as well as run the <b>ONLYOFFICE Community Server</b> and <b>ONLYOFFICE Control Panel</b> containers.</p>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/onlyoffice4enterprise-communityserver-ee_8.9.0.150.tar.gz" -ids false -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/CommunityServer-12.5.2.tar.gz" -ids false -icp true
</code></pre>
</span>
<p class="enterprise_display">This will run a container from the specified local <b>.tar.gz</b> file that contains the <b>ONLYOFFICE Community Server</b> image as well as run a <b>ONLYOFFICE Control Panel</b> container from the image stored in the <b>Docker Hub</b> repository.</p>

View File

@ -77,19 +77,19 @@
</tr>
</tbody>
</table>
<p>Diese Parameter können verwendet werden, um einen Namen des Images anzugeben, von dem aus ein Container gestartet werden soll. Das angegebene Image sollte in unserem offiziellen öffentlichen Repository auf <a target="_blank" class="links" href="https://hub.docker.com/<%= ((BasePage)Page).VersionName %>/">Docker Hub</a> gespeichert werden. <span class="enterprise_display">Wenn Sie ein <b>.tar.gz</b>-Archiv von der Seite <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Downloads</a> heruntergeladen haben, können Sie auch einen Pfad zu dieser auf Ihrem Computer gespeicherten <b>.tar.gz</b>-Datei angeben.</span></p>
<p>Diese Parameter können verwendet werden, um einen Namen des Images anzugeben, von dem aus ein Container gestartet werden soll. Das angegebene Image sollte in unserem offiziellen öffentlichen Repository auf <a target="_blank" class="links" href="https://hub.docker.com/u/onlyoffice">Docker Hub</a> gespeichert werden. <span class="enterprise_display">Wenn Sie ein <b>.tar.gz</b>-Archiv von der Seite <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Downloads</a> heruntergeladen haben, können Sie auch einen Pfad zu dieser auf Ihrem Computer gespeicherten <b>.tar.gz</b>-Datei angeben.</span></p>
<h4>Beispiel</h4>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice4enterprise/documentserver-ee -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver-ee -ics true -icp true
</code></pre>
</span>
<span class="community_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice/documentserver -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver -ics true -icp true
</code></pre>
</span>
<p>Ein Container wird aus dem angegebenen <b>ONLYOFFICE Docs</b>-Image ausgeführt, das im Repository gespeichert ist, sowie die Container des <b>ONLYOFFICE Community Servers</b> und der <b>ONLYOFFICE Systemsteuerung</b>.</p>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/onlyoffice4enterprise-communityserver-ee_8.9.0.150.tar.gz" -ids false -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/CommunityServer-12.5.2.tar.gz" -ids false -icp true
</code></pre>
</span>
<p class="enterprise_display">Ein Container wird aus der angegebenen lokalen <b>.tar.gz</b>-Datei ausgeführt, die das Image des <b>ONLYOFFICE Community Servers</b> enthält, sowie ein Container der <b>ONLYOFFICE Systemsteuerung</b> aus dem im <b>Docker Hub</b>-Repository gespeicherten Image.</p>

View File

@ -77,19 +77,19 @@
</tr>
</tbody>
</table>
<p>Estos parámetros pueden ser usados para especificar un nombre de la imagen desde la que es necesario iniciar el contenedor. La imagen especificada debe ser almacenada en nuestro repositorio público oficial en <a target="_blank" class="links" href="https://hub.docker.com/<%= ((BasePage)Page).VersionName %>/">Docker Hub</a>. <span class="enterprise_display">Si Usted ha descargado un archivo <b>.tar.gz</b> de la página <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Descargas</a>, Usted también puede especificar la ruta a este archivo <b>.tar.gz</b> almacenado en su máquina.</span></p>
<p>Estos parámetros pueden ser usados para especificar un nombre de la imagen desde la que es necesario iniciar el contenedor. La imagen especificada debe ser almacenada en nuestro repositorio público oficial en <a target="_blank" class="links" href="https://hub.docker.com/u/onlyoffice">Docker Hub</a>. <span class="enterprise_display">Si Usted ha descargado un archivo <b>.tar.gz</b> de la página <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Descargas</a>, Usted también puede especificar la ruta a este archivo <b>.tar.gz</b> almacenado en su máquina.</span></p>
<h4>Ejemplo</h4>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice4enterprise/documentserver-ee -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver-ee -ics true -icp true
</code></pre>
</span>
<span class="community_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice/documentserver -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver -ics true -icp true
</code></pre>
</span>
<p>Esto ejecutará un contenedor de la imagen especificada del <b>ONLYOFFICE Docs</b> almacenada en el repositorio así como ejecutará un contenedor del <b>ONLYOFFICE Community Server</b>, <b>Panel de Control</b>.</p>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/onlyoffice4enterprise-communityserver-ee_8.9.0.150.tar.gz" -ids false -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/CommunityServer-12.5.2.tar.gz" -ids false -icp true
</code></pre>
</span>
<p class="enterprise_display">Esto ejecutará un contenedor del archivo local especificado <b>.tar.gz</b> que contiene la imagen del <b>ONLYOFFICE Community Server</b> así como ejecutará un contenedor del <b>Panel de Control</b> de la imagen almacenada en el repositorio en <b>Docker Hub</b>.</p>

View File

@ -70,18 +70,18 @@
</tr>
</tbody>
</table>
<p>On peut utiliser ces paramètres pour définir un nom de l'image sur la base duquel le conteneur va démarrer. L'image doit être stockée dans notre dépôt public officiel sur <a target="_blank" class="links" href="https://hub.docker.com/<%= ((BasePage)Page).VersionName %>/">Docker Hub</a>. <span class="enterprise_display">Si vous avez téléchargé l'archive au format <b>.tar.gz</b> sur la page <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Téléchargement</a> , vous pouvez également définir le chemin d'accès au fichier <b>.tar.gz</b> stocké sur votre ordinateur.</span></p>
<p>On peut utiliser ces paramètres pour définir un nom de l'image sur la base duquel le conteneur va démarrer. L'image doit être stockée dans notre dépôt public officiel sur <a target="_blank" class="links" href="https://hub.docker.com/u/onlyoffice">Docker Hub</a>. <span class="enterprise_display">Si vous avez téléchargé l'archive au format <b>.tar.gz</b> sur la page <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Téléchargement</a> , vous pouvez également définir le chemin d'accès au fichier <b>.tar.gz</b> stocké sur votre ordinateur.</span></p>
<h4>Exemple</h4>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice4enterprise/documentserver-ee -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver-ee -ics true -icp true
</code></pre>
</span> <span class="community_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice/documentserver -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver -ics true -icp true
</code></pre>
</span>
<p>Cela va démarrer le conteneur sur la base de l'image <b>ONLYOFFICE Docs</b> qui est indiquée et stockée dans le dépôt et aussi va démarrer les conteneurs <b>ONLYOFFICE Community Server</b> et <b>ONLYOFFICE Panneau de configuration</b>.</p>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/onlyoffice4enterprise-communityserver-ee_8.9.0.150.tar.gz" -ids false -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/CommunityServer-12.5.2.tar.gz" -ids false -icp true
</code></pre>
</span>
<p class="enterprise_display">Cela va démarrer le conteneur à partir du fichier local <b>.tar.gz</b> comportant l'image <b>ONLYOFFICE Community Server</b> et aussi va démarrer le conteneur <b>ONLYOFFICE Panneau de configuration</b> sur la base de l'image stockée dans le dépôt <b>Docker Hub</b>.</p>

View File

@ -77,19 +77,19 @@
</tr>
</tbody>
</table>
<p>Эти параметры можно использовать, чтобы указать имя образа, из которого требуется запустить контейнер. Указанный образ должен находиться в нашем официальном публичном репозитории на <a target="_blank" class="links" href="https://hub.docker.com/<%= ((BasePage)Page).VersionName %>/">Docker Hub</a>. <span class="enterprise_display">Если вы скачали архив <b>.tar.gz</b> со страницы <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Загрузки</a>, можно также указать путь к этому файлу <b>.tar.gz</b>, сохраненному на вашей машине.</span></p>
<p>Эти параметры можно использовать, чтобы указать имя образа, из которого требуется запустить контейнер. Указанный образ должен находиться в нашем официальном публичном репозитории на <a target="_blank" class="links" href="https://hub.docker.com/u/onlyoffice">Docker Hub</a>. <span class="enterprise_display">Если вы скачали архив <b>.tar.gz</b> со страницы <a target="_blank" class="links" href="https://www.onlyoffice.com/download-workspace.aspx#workspace-enterprise">Загрузки</a>, можно также указать путь к этому файлу <b>.tar.gz</b>, сохраненному на вашей машине.</span></p>
<h4>Пример</h4>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice4enterprise/documentserver-ee -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver-ee -ics true -icp true
</code></pre>
</span>
<span class="community_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ci onlyoffice/documentserver -ics true -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -di onlyoffice/documentserver -ics true -icp true
</code></pre>
</span>
<p>В результате будет запущен контейнер из указанного образа <b>ONLYOFFICE Docs</b>, находящегося в репозитории, а также будет запущен контейнер <b>ONLYOFFICE Community Server</b> и <b>Панели управления</b>.</p>
<span class="enterprise_display">
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/onlyoffice4enterprise-communityserver-ee_8.9.0.150.tar.gz" -ids false -icp true
<pre><code>bash <%= ((BasePage)Page).CommandName %>-install.sh -ims false -ics true -ci "/home/user/CommunityServer-12.5.2.tar.gz" -ids false -icp true
</code></pre>
</span>
<p class="enterprise_display">В результате будет запущен контейнер из указанного локального файла <b>.tar.gz</b>, содержащего образ <b>ONLYOFFICE Community Server</b>, а также будет запущен контейнер <b>Панели управления</b> из образа, находящегося в репозитории на <b>Docker Hub</b>.</p>