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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new 650084e608 Fix wrong Docker ENV Var in index.adoc
     new 4a30965a56 Merge pull request #3306 from hansva/master
650084e608 is described below

commit 650084e608d9e45754a934e04b777df90c0ecf51
Author: Madalee <[email protected]>
AuthorDate: Sat Oct 14 15:46:29 2023 -0400

    Fix wrong Docker ENV Var in index.adoc
    
    The sample docker statement to start the Hop Server from docker had the 
wrong environment variable for the HOP_SERVER_PASS.  This prevented login of 
the server without first finding the error.
---
 docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc 
b/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc
index a368949a2e..e093e36d0e 100644
--- a/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc
+++ b/docs/hop-user-manual/modules/ROOT/pages/hop-server/index.adoc
@@ -394,7 +394,7 @@ docker run \
   -e HOP_SERVER_PORT=8080 \
   -e HOP_SERVER_SHUTDOWNPORT=8079 \
   -e HOP_SERVER_USER=username \
-  -e HOP_SERVER_USER=password \
+  -e HOP_SERVER_PASS=password \
   apache/hop
 ----
 

Reply via email to