You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by mc...@apache.org on 2021/02/26 10:12:19 UTC

[incubator-hop-docs] branch asf-site updated: Small update to the hop-server example

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

mcasters 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 b94539d  Small update to the hop-server example
b94539d is described below

commit b94539d0b461f73dd4b69ff7b1b07e2ddbbb9214
Author: Matt Casters <ma...@gmail.com>
AuthorDate: Fri Feb 26 11:12:11 2021 +0100

    Small update to the hop-server example
---
 hop-tech-manual/modules/ROOT/pages/docker-container.adoc | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/hop-tech-manual/modules/ROOT/pages/docker-container.adoc b/hop-tech-manual/modules/ROOT/pages/docker-container.adoc
index 956eba0..fa49dde 100644
--- a/hop-tech-manual/modules/ROOT/pages/docker-container.adoc
+++ b/hop-tech-manual/modules/ROOT/pages/docker-container.adoc
@@ -136,14 +136,15 @@ docker pull docker.io/apache/incubator-hop:<tag>
 docker run -it --rm \
   --env HOP_SERVER_USER=admin \
   --env HOP_SERVER_PASS=admin \
-  -p 8080:8080 \
+  --env HOP_SERVER_PORT=8181 \
+  -p 8181:8181 \
   --name my-hop-server-container \
  apache/incubator-hop:<tag>
 ----
 
 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`
+You can then access the hop-server UI from your host at `http://localhost:8181`
 
 == Custom Entrypoint Extension Shell Script