I'm just looking for advice here... with a docker ...
# ask-community
c
I'm just looking for advice here... with a docker deploy of dagster, what's the best way to maintain separate repositories with various flows? I have two teams that would be using dagster, each with multiple jobs to support, maintain, and update. Is it possible to have one gRPC server track multiple modules from a git repo directory belonging to one team? The
deploy_docker
example launches a single gRPC server with the
Dockerfile_user_code
configuration, but only points to a single file/module.
s
There are a few ways to do this, but I think workspace.yaml is the right place to start, e.g https://docs.dagster.io/concepts/code-locations/workspace-files#loading-multiple-repositories
❤️ 1
c
Ok, thanks. Dagster’s deprecated use of @repository confuses the documentation a bit.