commit 6e74c61414ac3eab000c2a88f92ee3ac81f131b7 Author: markus Date: Wed May 28 13:19:25 2025 +0000 Add compose file diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..88c8402 --- /dev/null +++ b/compose.yaml @@ -0,0 +1,38 @@ +services: + + hop: + container_name: apache_hop + image: apache/hop:2.14.0 + restart: unless-stopped + ports: + - "127.0.0.1:8179:8079" # shutdown port + - "127.0.0.1:8180:8080" # application port + volumes: + - ./files:/files + environment: + HOP_LOG_LEVEL: Basic + HOP_PROJECT_FOLDER: /files + HOP_PROJECT_NAME: samples + HOP_RUN_CONFIG: local + networks: + - internal + + web: + container_name: apache_hop_web + image: apache/hop-web:2.14.0 + restart: unless-stopped + ports: + - "127.0.0.1:8080:8080" # web ui @ http://localhost:8080/ui + environment: + HOP_PROJECT_FOLDER: /files + HOP_PROJECT_NAME: samples + HOP_SERVER_HOSTNAME: hop + HOP_SERVER_PORT: 8080 + volumes: + - ./files:/files + - ./config:/config + networks: + - internal + +networks: + internal: