This is an automated email from the ASF dual-hosted git repository.
bartmaer pushed a commit to branch release/2.6.0
in repository https://gitbox.apache.org/repos/asf/hop.git
The following commit(s) were added to refs/heads/release/2.6.0 by this push:
new 8300d80540 Fix wrong Docker ENV Var in index.adoc
new 54c4e00ba2 Merge pull request #3305 from t3nk3y/patch-1
8300d80540 is described below
commit 8300d80540aa428c85c1979fce1f725ca1c721e4
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
----