HiromuHota / pentaho-kettle

webSpoon is a web-based graphical designer for Pentaho Data Integration with the same look & feel as Spoon
https://hub.docker.com/r/hiromuhota/webspoon/
Apache License 2.0
502 stars 192 forks source link

Does webspoon support http://localhost:8080/pentaho for respository? #174

Closed kundeng closed 5 years ago

kundeng commented 5 years ago

Expected Behavior

I'm new to this. Is pentaho repository an enterprise only feature? From I read, even in the community edition, that function still works, though at a reduced capacity.

I clicked the connect button but it leads to an error saying it can't connect to server.

Do I need to create a repository in advance? If so, how?

Actual Behavior

Screenshots and error messages are helpful. image

Steps to Reproduce the Problem

1. 1. 1.

Specifications

Server

Client

HiromuHota commented 5 years ago

No, webSpoon does not support http://localhost:8080/pentaho for repository.

Yes, even the community edition of Pentaho server (not Spoon) supports Pentaho repository. If you deploy one, webSpoon can connect to it.

kundeng commented 5 years ago

What is the most convenient way to do so with your docker-compose set-up? Maybe another container running pentaho server CM edition?

HiromuHota commented 5 years ago

The following docker-compose.yml works.

version: '2' 
services:
  webspoon:
    image: hiromuhota/webspoon
    ports:
      - "8080:8080"
    links:
      - pentaho
  pentaho:
    image: doccom/pentaho-bi-server-ce

Use http://pentaho:8080/pentaho as a repository url.