Hey there, TL;DR: what is the best way to run mult...
# ask-community-for-troubleshooting
s
Hey there, TL;DR: what is the best way to run multiple
docker-compose
instances of airbyte in parallel without sharing any data/config? Locally I have to run multiple airbyte instances for completely separate projects and I want to use
docker-compose
for that. No data or configuration between the instances should be shared. The
docker-compose.yaml
contains a few volumes (
workspace
,
data
,
db
) and I can change the mount point, but the
.env
file contains many more paths that would be the same between instances. Is there maybe a global prefix to change all these variables? Do I have to change the variable one by one? Or is there a better way?
🤔 1