This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch asf-site
in repository 
https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 9959729  Automated deployment: 326f7afbdd43280adfdf365ca4b88bd83465e614
9959729 is described below

commit 99597291617ac63d1ab9f33f3882820003ba4c30
Author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Jan 25 02:39:48 2021 +0000

    Automated deployment: 326f7afbdd43280adfdf365ca4b88bd83465e614
---
 en-us/docs/1.3.4/user_doc/docker-deployment.html | 47 ++++++++++++++----------
 en-us/docs/1.3.4/user_doc/docker-deployment.json |  2 +-
 2 files changed, 28 insertions(+), 21 deletions(-)

diff --git a/en-us/docs/1.3.4/user_doc/docker-deployment.html 
b/en-us/docs/1.3.4/user_doc/docker-deployment.html
index 050ea39..8bf25b3 100644
--- a/en-us/docs/1.3.4/user_doc/docker-deployment.html
+++ b/en-us/docs/1.3.4/user_doc/docker-deployment.html
@@ -10,11 +10,11 @@
   <link rel="stylesheet" href="/build/docs.md.css" />
 </head>
 <body>
-  <div id="root"><div class="md2html docs-page" data-reactroot=""><header 
class="header-container header-container-normal"><div class="header-body"><a 
href="/en-us/index.html"><img class="logo" 
src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span 
class="icon-search"></span></div><span class="language-switch 
language-switch-normal">中</span><div class="header-menu"><img 
class="header-menu-toggle" src="/img/system/menu_gray.png"/><div><ul 
class="ant-menu blackClass ant [...]
-<p>There are 2 ways to quickly intall DolphinScheduler</p>
-<h3>The first way:Start with docker-compose (recommended)</h3>
-<p>In this way, you need to install docker-compose first, please install it 
yourself</p>
-<h5>1、 Download the source code zip package</h5>
+  <div id="root"><div class="md2html docs-page" data-reactroot=""><header 
class="header-container header-container-normal"><div class="header-body"><a 
href="/en-us/index.html"><img class="logo" 
src="/img/hlogo_colorful.svg"/></a><div class="search search-normal"><span 
class="icon-search"></span></div><span class="language-switch 
language-switch-normal">中</span><div class="header-menu"><img 
class="header-menu-toggle" src="/img/system/menu_gray.png"/><div><ul 
class="ant-menu blackClass ant [...]
+<p>Here're 2 ways to quickly install DolphinScheduler</p>
+<h3>The First Way:Start With docker-compose (Recommended)</h3>
+<p>In this way, you need to install docker-compose as a prerequisite, please 
install it yourself according to the rich docker-compose installation guidance 
on the Internet</p>
+<h5>1、 Download the Source Code Zip Package</h5>
 <ul>
 <li>Please download the latest version of the source code package and unzip 
it</li>
 </ul>
@@ -29,30 +29,31 @@ unzip apache-dolphinscheduler-incubating-1.3.4-src.zip
  
 mv apache-dolphinscheduler-incubating-1.3.4-src-release  dolphinscheduler-src
 </code></pre>
-<h5>2、 Install and start the service</h5>
+<h5>2、 Install and Start the Service</h5>
 <pre><code>cd dolphinscheduler-src
 docker-compose -f ./docker/docker-swarm/docker-compose.yml up -d
 </code></pre>
-<h5>3、 Login the system</h5>
+<h5>3、 Login</h5>
 <p>Visit the front-end UI: <a 
href="http://192.168.xx.xx:8888";>http://192.168.xx.xx:8888</a></p>
   <p align="center">
     <img src="/img/login_en.png" width="60%" />
   </p>
-Then refer to the `Quick Start` in the chapter of the user manual to use
-<h3>The Second way: start in docker mode</h3>
-<h5>1. Basic software installation (please install by yourself)</h5>
+Please refer to the `Quick Start` in the chapter 'User Manual' to explore how 
to use DolphinScheduler
+<h3>The Second way: Start in the Docker Mode</h3>
+<h5>1. Basic Required Software (please install by yourself)</h5>
 <ul>
 <li>PostgreSQL (8.2.15+)</li>
 <li>ZooKeeper (3.4.6+)</li>
 <li>Docker</li>
 </ul>
 <h5>2. Please login to the PostgreSQL database and create a database named 
<code>dolphinscheduler</code></h5>
-<h5>3. Initialize the database, import 
<code>sql/dolphinscheduler-postgre.sql</code></h5>
+<h5>3. Initialize the database, import 
<code>sql/dolphinscheduler-postgre.sql</code> to create tables and initial 
data</h5>
 <h5>4. Download the DolphinScheduler Image</h5>
+<p>We have already uploaded user-oriented DolphinScheduler image to the Docker 
repository so that you can pull the image from the docker repository and 
self-build image not needed:</p>
 <pre><code>docker pull apache/dolphinscheduler:latest
 </code></pre>
-<h5>5. Run a DolphinScheduler instance</h5>
-<p>start service:</p>
+<h5>5. Run a DolphinScheduler Instance</h5>
+<p>Check follows:</p>
 <pre><code>$ docker run -dit --name dolphinscheduler \
 -e ZOOKEEPER_QUORUM=&quot;l92.168.x.x:2181&quot;
 -e DATABASE_HOST=&quot;192.168.x.x&quot; -e DATABASE_PORT=&quot;5432&quot; -e 
DATABASE_DATABASE=&quot;dolphinscheduler&quot; \
@@ -60,17 +61,23 @@ Then refer to the `Quick Start` in the chapter of the user 
manual to use
 -p 8888:8888 \
 dolphinscheduler all
 </code></pre>
-<p>Note: {user} and {password} need to be replaced with your database user 
name and password)</p>
+<p>Note: {user} and {password} need to be replaced with your database user 
name and password</p>
+<h5>6. Login</h5>
+<p>Visit the front-end UI: <a 
href="http://192.168.xx.xx:8888";>http://192.168.xx.xx:8888</a></p>
+  <p align="center">
+    <img src="/img/login_en.png" width="60%" />
+  </p>
+Please refer to the `Quick Start` in the chapter 'User Manual' to explore how 
to use DolphinScheduler
 <h2>Appendix</h2>
-<h3>When the container starts, the following services are automatically 
started:</h3>
-<pre><code class="language-aidl">     MasterServer ----- master service
+<h3>The following services are automatically started when the container 
starts:</h3>
+<pre><code>     MasterServer ----- master service
      WorkerServer ----- worker service
      LoggerServer ----- logger service
-     ApiApplicationServer ----- api service
+     ApiApplicationServer ----- API service
      AlertServer ----- alert service
 </code></pre>
-<h3>If you just want to run some services in dolphinscheduler</h3>
-<p>You can run some services in dolphinscheduler.</p>
+<h3>If you just want to run part of the services in the DolphinScheduler</h3>
+<p>You can start selected services in DolphinScheduler by run the following 
commands.</p>
 <ul>
 <li>Start a <strong>master server</strong>, For example:</li>
 </ul>
@@ -114,7 +121,7 @@ dolphinscheduler alert-server
 -p 8888:8888 \
 dolphinscheduler frontend
 </code></pre>
-<p><strong>Note</strong>: You must be specify <code>DATABASE_HOST</code> 
<code>DATABASE_PORT</code> <code>DATABASE_DATABASE</code> 
<code>DATABASE_USERNAME</code> <code>DATABASE_PASSWORD</code> 
<code>ZOOKEEPER_QUORUM</code> when start a standalone dolphinscheduler 
server.</p>
+<p><strong>Note</strong>: You must specify the following environment 
variables: <code>DATABASE_HOST</code> <code>DATABASE_PORT</code> 
<code>DATABASE_DATABASE</code> <code>DATABASE_USERNAME</code> 
<code>DATABASE_PASSWORD</code> <code>ZOOKEEPER_QUORUM</code> when start part of 
the DolphinScheduler services.</p>
 </div></section><footer class="footer-container"><div class="footer-body"><img 
src="/img/ds_gray.svg"/><div class="cols-container"><div class="col 
col-12"><h3>Disclaimer</h3><p>Apache DolphinScheduler is an effort undergoing 
incubation at The Apache Software Foundation (ASF), sponsored by the Apache 
Incubator. Incubation is required of all newly accepted projects until a 
further review indicates that the infrastructure, communications, and decision 
making process have stabilized in a man [...]
   <script 
src="https://f.alicdn.com/react/15.4.1/react-with-addons.min.js";></script>
   <script src="https://f.alicdn.com/react/15.4.1/react-dom.min.js";></script>
diff --git a/en-us/docs/1.3.4/user_doc/docker-deployment.json 
b/en-us/docs/1.3.4/user_doc/docker-deployment.json
index 5d9d85f..f68d4a7 100644
--- a/en-us/docs/1.3.4/user_doc/docker-deployment.json
+++ b/en-us/docs/1.3.4/user_doc/docker-deployment.json
@@ -1,6 +1,6 @@
 {
   "filename": "docker-deployment.md",
-  "__html": "<h2>Try DolphinScheduler quickly</h2>\n<p>There are 2 ways to 
quickly intall DolphinScheduler</p>\n<h3>The first way:Start with 
docker-compose (recommended)</h3>\n<p>In this way, you need to install 
docker-compose first, please install it yourself</p>\n<h5>1、 Download the 
source code zip package</h5>\n<ul>\n<li>Please download the latest version of 
the source code package and unzip it</li>\n</ul>\n<pre><code 
class=\"language-shell\">mkdir -p /opt/soft/dolphinscheduler;\ncd / [...]
+  "__html": "<h2>QuickStart in Docker</h2>\n<p>Here're 2 ways to quickly 
install DolphinScheduler</p>\n<h3>The First Way:Start With docker-compose 
(Recommended)</h3>\n<p>In this way, you need to install docker-compose as a 
prerequisite, please install it yourself according to the rich docker-compose 
installation guidance on the Internet</p>\n<h5>1、 Download the Source Code Zip 
Package</h5>\n<ul>\n<li>Please download the latest version of the source code 
package and unzip it</li>\n</ul>\n [...]
   "link": "/dist/en-us/docs/1.3.4/user_doc/docker-deployment.html",
   "meta": {}
 }
\ No newline at end of file

Reply via email to