Add compose file

This commit is contained in:
Markus Thielker 2025-05-28 13:19:25 +00:00
commit 6e74c61414

38
compose.yaml Normal file
View file

@ -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: