https://github.com/tobilg/pentaho-di-docker
A Docker image for Pentaho Data Integration (currently version 6.1)
https://github.com/tobilg/pentaho-di-docker
Last synced: 10 months ago
JSON representation
A Docker image for Pentaho Data Integration (currently version 6.1)
- Host: GitHub
- URL: https://github.com/tobilg/pentaho-di-docker
- Owner: tobilg
- License: mit
- Archived: true
- Created: 2016-10-15T10:56:19.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-10-15T19:16:30.000Z (almost 10 years ago)
- Last Synced: 2025-03-26T03:41:32.668Z (over 1 year ago)
- Language: Shell
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pentaho-di-docker
A Docker image for Pentaho Data Integration (currently version 6.1)
## Starting the master
```javascript
{
"id": "pentaho-di-master",
"container": {
"type": "DOCKER",
"docker": {
"image": "tobilg/pentaho-di:latest",
"network": "HOST",
"forcePullImage": true,
"privileged": false
}
},
"instances": 1,
"cpus": 0.5,
"mem": 2048,
"ports": [0],
"env": {
"CARTE_NETWORK_INTERFACE": "eth1"
}
}
```
## Starting the slave
```javascript
{
"id": "pentaho-di-slave",
"container": {
"type": "DOCKER",
"docker": {
"image": "tobilg/pentaho-di:latest",
"network": "HOST",
"forcePullImage": true,
"privileged": false
}
},
"instances": 1,
"cpus": 0.5,
"mem": 2048,
"ports": [0],
"env": {
"PDI_MASTER_SERVICE_NAME": "pentaho-di-master.marathon.mesos",
"CARTE_INCLUDE_MASTERS": "Y",
"CARTE_IS_MASTER": "N",
"CARTE_NETWORK_INTERFACE": "eth1"
}
}
```