andrey_tatarinov
06/08/2022, 10:43 AM.meltano outside of the main project dir?
Use case:
Customer asked to prepare dockerized setup for local development. I want to have base docker image that contains meltano, all the deps pre-installed. Also I need to mount host directory with meltano project for development. But when I do that .meltano directory gets overriden and we get really weird issues with incompatible host and local paths etc.
Solution:
Ideally I would have some env variable like MELTANO_DOTDIR, that I would point to /opt/meltano in docker image.andrey_tatarinov
06/08/2022, 10:45 AMpipx, but in this specific case I need to prepare dockerized env per customer request.visch
06/08/2022, 4:07 PMandrey_tatarinov
06/08/2022, 4:30 PMandrey_tatarinov
06/08/2022, 4:31 PM.meltano a symlink that points to /opt/meltano and commited it to source control.
This way I can do meltano install at docker build stage and use it later when host source directory is mounted on top of /projectandrey_tatarinov
06/08/2022, 4:32 PM