You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/11/16 11:18:46 UTC

[hop] branch master updated: HOP-4550: link compose containers, remove host binding

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 4596117872 HOP-4550: link compose containers, remove host binding
     new 7fdf09e77b Merge pull request #1793 from hansva/master
4596117872 is described below

commit 4596117872302cf89babc187b717518ec6564a4e
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Wed Nov 16 12:18:15 2022 +0100

    HOP-4550: link compose containers, remove host binding
---
 integration-tests/hopweb/docker-compose.yml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/integration-tests/hopweb/docker-compose.yml b/integration-tests/hopweb/docker-compose.yml
index 1d369b0864..4f9da90885 100644
--- a/integration-tests/hopweb/docker-compose.yml
+++ b/integration-tests/hopweb/docker-compose.yml
@@ -22,7 +22,7 @@ services:
       image: apache/hop-web:Development
       container_name: hopweb
       ports:
-        - "8081:8080"
+        - "8080"
     hop-web-test:
       depends_on:
         - hopweb
@@ -30,7 +30,9 @@ services:
         context: ../../.
         dockerfile: integration-tests/hopweb/Dockerfile
       ports:
-        - "4444:4444"
+        - "4444"
 #      command: tail -f /dev/null
       volumes:
         - ./integration-tests/hopweb/target/surefire-reports:/surefire-reports:rw
+      links:
+        - hopweb