My setup utilizes running dbt inside a docker container as a part of whole Meltano-based stack.
I was wondering if this plugin could interact with dbt executable inside such container. I tried replacing dbt executable with docker exec command accordingly:
path_to_dbt = "docker exec $(docker ps | grep meltano-airflow-scheduler | sed -e 's/ .*$//') meltano invoke dbt-duckdb",
but I'm receiving Executable not found error.
Is it possible to configure dbtpal to work with dbt inside docker container?
My setup utilizes running dbt inside a docker container as a part of whole Meltano-based stack.
I was wondering if this plugin could interact with dbt executable inside such container. I tried replacing dbt executable with
docker execcommand accordingly:but I'm receiving
Executable not founderror.Is it possible to configure
dbtpalto work with dbt inside docker container?