http://community.pentaho.com/ Version: 5.3
Run this command in terminal, adapt credentials and ports as needed
docker run --name pentaho-db -p 5432:5432 -e POSTGRES_USER=pentaho -e POSTGRES_PASSWORD=secret -d postgres:9.3
or run script
./scripts/docker-run-postgresql.sh
docker run --name pentaho-server -p 8080:8080 --link pentaho-db:postgres -e DB_USER=pentaho -e DB_PASS=secret -d smartstudio/pentaho:5.3
or run script
./scripts/docker-run-pentaho.sh
docker-compose up -d
- User Name: admin
- Password: password
You have to set the following variable:
POSTGRES_PASSWORD
See: https://registry.hub.docker.com/_/postgres/
DB_HOST
- default: linkedpostgres
containerDB_USER
- default: "postgres"DB_PASS
- default: "password"DB_PORT
- default: 5432DB_SERVICE_NAME
- default: empty. See TODOTIMEZONE
- default: "Europe/Madrid"LOCALE
- default: "es_ES.UTF-8 UTF-8"LANG
- default: es_ES.utf8INSTALL_PLUGINS
- default: false
docker logs -f pentaho-db
docker logs -f pentaho-server