All Projects → zhicwu → docker-biserver-ce

zhicwu / docker-biserver-ce

Licence: other
Docker image for Pentaho BI server(community edition). https://hub.docker.com/r/zhicwu/biserver-ce/

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to docker-biserver-ce

ruby-for-pentaho-kettle
Ruby scripting for pentaho-kettle
Stars: ✭ 42 (+20%)
Mutual labels:  pdi, kettle
pentaho-gis-plugins
🗺 GIS plugins for Pentaho Data Integration
Stars: ✭ 42 (+20%)
Mutual labels:  pentaho-data-integration
kettle
Kettle Online Business Intelligence Platform -- Pentaho Data Integration ( ETL ) a.k.a Kettle
Stars: ✭ 13 (-62.86%)
Mutual labels:  kettle
ESP32-R4sGate-for-Redmond
ESP32 Ready4Sky (R4S) Gateway for Redmond+ devices
Stars: ✭ 117 (+234.29%)
Mutual labels:  kettle
OpenKettleWebUI
一款基于kettle的数据处理web调度控制平台,支持文档资源库和数据库资源库,通过web平台控制kettle数据转换,可作为中间件集成到现有系统中
Stars: ✭ 138 (+294.29%)
Mutual labels:  kettle
kettle
Java调用Kettle API执行转换和作业,Java代码生成Kettle转换。
Stars: ✭ 21 (-40%)
Mutual labels:  kettle

docker-biserver-ce

Pentaho BI server(community edition) docker image. https://hub.docker.com/r/zhicwu/biserver-ce/

What's inside

ubuntu:16.04
 |
 |-- phusion/baseimage:latest
      |
      |-- zhicwu/java:8
           |
           |-- zhicwu/biserver-ce:7.0

Known issue

  • Not able to import mondrian schema in console, you'll have to use schema workbench to publish schema to BI server

Get started

  • Run vanilla Pentaho server
$ docker run --name bi -p 8080:8080 -d zhicwu/biserver-ce:7.0 biserver
$ docker logs -f bi
  • Run patched Pentaho server
$ docker run --name bi -e APPLY_PATCHES=Y -p 8080:8080 -d zhicwu/biserver-ce:7.0 biserver
$ docker logs -f bi
  • Use docker-compose (Recommended)
$ git clone https://github.com/zhicwu/docker-biserver-ce.git -b 7.0 --single-branch
$ cd docker-biserver-ce
... edit .env and/or docker-compose.yml based on your needs, put your Pentaho configuration files under ext directory if necessary ...
$ docker-compose up -d
$ docker-compose logs -f

Regardless which approach you took, after server started, you should be able to access http://localhost:8080(admin/password) or http://localhost:8080/jamon(no login required).

How to use external database

Taking MySQL 5.x as an example. Assuming you have pbi_repository, pbi_quartz and pdi_jcr 3 databases created, change docker-compose.yml to set STORAGE_TYPE to mysql5, and then mount volume ./secret.env:/biserver-ce/data/secret.env:rw: with the following content:

SERVER_PASSWD=password
DB_HOST=xxx
DB_PORT=3306
DB_USER=xxx
DB_PASSWD=xxx

How to build

$ git clone https://github.com/zhicwu/docker-biserver-ce.git -b 7.0 --single-branch
$ cd docker-biserver-ce
$ docker build -t my/biserver:7.0 .
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].