Add compose file
This commit is contained in:
commit
6e74c61414
1 changed files with 38 additions and 0 deletions
38
compose.yaml
Normal file
38
compose.yaml
Normal 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:
|
Loading…
Add table
Add a link
Reference in a new issue