Stefan Otte
10/01/2021, 4:18 PMdump-airbyte-configuration-to-file
and b) the option to load that file when running airbyte via docker-compose up
Or maybe you folks have another nice workaround.user
10/01/2021, 4:20 PMuser
10/01/2021, 4:27 PMuser
10/01/2021, 4:28 PMuser
10/01/2021, 4:34 PMuser
10/01/2021, 4:35 PM# Export config
curl -H "Content-Type: application/json" \
-X POST localhost:8000/api/v1/deployment/export \
--output /tmp/airbyte_archive.tar.gz
# Import config
curl -H "Content-Type: application/x-gzip" \
-X POST localhost:8000/api/v1/deployment/import \
--data-binary /tmp/airbyte_archive.tar.gz
user
10/01/2021, 4:36 PMStefan Otte
10/01/2021, 4:37 PMuser
10/01/2021, 4:43 PMuser
10/01/2021, 5:29 PMuser
10/08/2021, 8:20 AMuser
10/12/2021, 3:38 PMuser
10/13/2021, 6:46 AMuser
10/13/2021, 1:06 PMuser
10/14/2021, 8:17 AMuser
10/14/2021, 9:17 PMuser
10/16/2021, 9:27 AMIs there a way to only export a specific airbyte connection (to version control it)?Yes. You can use the connection API: https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html#post-/v1/connections/get
user
10/16/2021, 9:28 AMhow can I have project specific airbyte instances with docker?You can do this with multiple workspaces in the same instance. Currently the OSS version does not support multiple workspaces in the UI. But you can still create and manage them through the API: https://airbyte-public-api-docs.s3.us-east-2.amazonaws.com/rapidoc-api-docs.html#post-/v1/workspaces/create