Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bytekast/docker-pentaho-ce-5.3
Base image for running Pentaho BISERVER CE software within a Docker Container
https://github.com/bytekast/docker-pentaho-ce-5.3
Last synced: 13 days ago
JSON representation
Base image for running Pentaho BISERVER CE software within a Docker Container
- Host: GitHub
- URL: https://github.com/bytekast/docker-pentaho-ce-5.3
- Owner: bytekast
- Created: 2015-05-19T21:31:12.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-23T20:15:50.000Z (over 9 years ago)
- Last Synced: 2023-04-10T16:09:05.771Z (over 1 year ago)
- Language: Shell
- Size: 172 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-pentaho-ce-5.3
==============[![Deploy to Tutum](https://s.tutum.co/deploy-to-tutum.svg)](https://dashboard.tutum.co/stack/deploy/)
## Base image for running Pentaho BISERVER CE software within a Docker Container
### Building
```
docker build -t bytekast/pentaho-ce-5.3 .
```### Running
`bytekast/pentaho-ce-5.3` is designed to run as a daemon, which you can ssh into and intall Pentaho.
To start a new container, run
```
docker run -d -p 2222:22 -p 8888:8080 -e AUTHORIZED_KEYS="`cat ~/.ssh/id_rsa.pub`" bytekast/pentaho-ce-5.3
```You are now able to ssh directly into the container with your ssh keys (Replace DOCKER_HOST with the `boot2docker` ip address or the docker host ip)
```
ssh -p 2222 root@DOCKER_HOST
```To check the biserver logs, ssh to the container and run:
```
tail -f /home/pentaho/biserver-ce-5.3.0.0-213/biserver-ce/tomcat/logs/catalina.out
```Or run in the docker host:
```
docker logs $CONTAINER_ID
```