starburstdata / metabase-driver

Starburst Metabase driver
Apache License 2.0
60 stars 11 forks source link

Problem with ubuntu #104

Closed MammadTavakoli closed 10 months ago

MammadTavakoli commented 11 months ago

when i create an docker compose file like this:

version: '3'
services:
  metabase:
    image: metabase/metabase:latest
    ports:
      - "3000:3000"
    volumes:
      - data:/metabase
      - ./metabase/plugins:/plugins
volumes:
  data:

It work in windows but I can not see straburst in the database list when I run it in ubuntu. How can I solve this problem?

lpoulain commented 11 months ago

Are you sure that you used the exact same docker compose file on both systems? The whole point of Docker is to make a container run exactly the same regardless of the system.

lpoulain commented 11 months ago

P.S: the reason why I'm asking is because metabase/metabase:latest does not contain the Starburst driver (it should be downloaded and installed separately), so I'm wondering if you used a slightly different image on Windows.

As far as the image you are using, it is entirely managed by Metabase, not Starburst.