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

hansva pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-hop-docs.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 14e385b  HOP-2550 : Docker: simplify hop-server use case
     new c93ca34  Merge pull request #47 from mattcasters/asf-site
14e385b is described below

commit 14e385b8eaced29a4609f77d7eab72a80e45df76
Author: Matt Casters <[email protected]>
AuthorDate: Wed Feb 24 09:14:00 2021 +0100

    HOP-2550 : Docker: simplify hop-server use case
---
 .../modules/ROOT/pages/docker-container.adoc         | 20 ++++++--------------
 1 file changed, 6 insertions(+), 14 deletions(-)

diff --git a/hop-tech-manual/modules/ROOT/pages/docker-container.adoc 
b/hop-tech-manual/modules/ROOT/pages/docker-container.adoc
index 0b856a9..eef3874 100644
--- a/hop-tech-manual/modules/ROOT/pages/docker-container.adoc
+++ b/hop-tech-manual/modules/ROOT/pages/docker-container.adoc
@@ -120,26 +120,22 @@ docker run -it --rm \
   apache/incubator-hop:<tag>
 ----
 
-If you need a **long-lived container**, this option is also available.Run this 
command e.g.:
+If you need a **long-lived container**, this option is also available. Run 
this command to start a Hop Server in a docker container:
 
 [source,bash]
 ----
 docker pull docker.io/apache/incubator-hop:<tag>
 docker run -it --rm \
-  --env HOP_LOG_LEVEL=Basic \
-  --env HOP_PROJECT_DIRECTORY=/files/project \
-  --env HOP_PROJECT_NAME=project-a \
-  --env HOP_ENVIRONMENT_NAME=project-a-test \
-  --env 
HOP_ENVIRONMENT_CONFIG_FILE_NAME_PATHS=/files/config/project-a-test.json \
   --env HOP_SERVER_USER=admin \
   --env HOP_SERVER_PASS=admin \
-  -p 8080:8080
-  -v /path/to/local/dir:/files \
-  --name my-simple-hop-container \
+  -p 8080:8080 \
+  --name my-hop-server-container \
  apache/incubator-hop:<tag>
 ----
 
-You can then access the hop-server UI from your dockerhost at 
```http://localhost:8080```
+Hop Server is designed to receive all variables and metadata from executing 
clients. This means it needs little to no configuration to run.
+
+You can then access the hop-server UI from your host at `http://localhost:8080`
 
 == Custom Entrypoint Extension Shell Script
 
@@ -219,7 +215,3 @@ docker run -it --rm \
 ----
 
 
-== Shortcomings
-
-Currently the ```hop-server``` support is minimal.
-

Reply via email to