Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bytekast/docker-pentaho-base
https://github.com/bytekast/docker-pentaho-base
Last synced: 13 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bytekast/docker-pentaho-base
- Owner: bytekast
- Created: 2015-05-23T00:52:32.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-23T02:28:15.000Z (over 9 years ago)
- Last Synced: 2023-04-10T16:09:05.178Z (over 1 year ago)
- Language: PLpgSQL
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
docker-pentaho-base
==============[![Deploy to Tutum](https://s.tutum.co/deploy-to-tutum.svg)](https://dashboard.tutum.co/stack/deploy/)
## Base image for running Pentaho software within a Docker Container
### Building
```
docker build -t bytekast/pentaho-base .
```### Running
`bytekast/pentaho-base` is designed to run as a daemon, which you can ssh into and install 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-base
```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 view the logs, run:
```
docker logs $CONTAINER_ID
```