Winnie Lu
05/09/2023, 4:54 PMsource.py
and streams.py
files of the custom connector, do I need to create a new connector or just use docker push
to update the connector? Thank you.kapa.ai
05/09/2023, 4:54 PMMarcos Marx (Airbyte)
05/09/2023, 4:55 PMdocker build and push
againkapa.ai
05/09/2023, 4:56 PMsource.py
and streams.py
files, you don't need to create a new connector. Instead, follow these steps: 1. Build and tag your connector image locally, e.g., docker build . -t my-custom-connectors/source-custom:0.1.0
2. Create your image tag with the docker tag
command. The structure of the remote tag depends on your cloud provider's container registry service. Please check their online documentation linked at the top. 3. Use docker push <image-name>:<tag>
to push the updated image to your private Docker registry. You should run all the above commands from your local/CI environment, where your connector source code is available. Source: [Using custom connectors](https://docs.airbyte.com/operator-guides/using-custom-connectors)Winnie Lu
05/09/2023, 5:00 PMMarcos Marx (Airbyte)
05/09/2023, 5:01 PMWinnie Lu
05/09/2023, 5:01 PMWinnie Lu
05/09/2023, 5:02 PM