An open API service indexing awesome lists of open source software.

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)

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"
}
}
```