Hi there. We've been looking into the <containeriz...
# troubleshooting
a
Hi there. We've been looking into the containerization guide and attempted to run
meltano invoke dbt-snowflake:run
through Docker, using the Dockerfile provided in that guide (with 'meltano' as the entrypoint command). It looks like dbt is unable to connect to Snowflake from the container (runs fine outside it). It doesn't provide any detailed errors explaining why. Anyone else run into this or know off the top of your head why this would happen? These are the actual commands that were run:
docker build --tag meltano-tap-slack:dev .
docker run --env-file ./.env meltano-tap-slack:dev invoke dbt-snowflake:run
p
@alison_tinker I'd guess that its having trouble finding your credentials for some reason. Try running the equivalent of
meltano --environment=dev config dbt-snowflake
inside your container, it might expose the issue. UPDATED: to include environment name
a
Thanks, it looks like the creds were being quoted in
.env
, resulting in double quotes when added to the config. Working now.