chidi_nweke
04/16/2023, 11:36 AMmeltano init
in there? I prefer to use vs code dev containers so I would be developing inside the container. I think in this case just taking a Python image and pip installing Meltano OR overriding the meltano entrypoint of the image makes sense. What do you guys think?Henning Holgersen
04/17/2023, 4:16 AMchidi_nweke
04/17/2023, 4:53 AMtty: true
to keep a terminal running.pat_nadolny
04/17/2023, 2:46 PMdocker run -v $(pwd):/projects -w /projects meltano/meltano init my-meltano-project
then spin down, leaving the altered artifacts like meltano.yml on your local machine because its mounted as a volume. Meltano doesnt have any long running services so its not required to be always up but your idea to develop inside a meltano container seems reasonable. I think its pretty common for people to develop locally without docker (i.e. with meltano installed in a venv or using pipx) then package their meltnao project artifacts use docker, thats what I do too https://github.com/meltano/squared/blob/main/deploy/meltano/Dockerfile.meltanochidi_nweke
04/17/2023, 5:04 PM