hey guys i wanted to make facebook-marketing conne...
# ask-community-for-troubleshooting
t
hey guys i wanted to make facebook-marketing connector work with api v13 so i changed the connector to pull the facebook_marketing lib from a forged lib and now have build the whole airbyte docker image again with gradle. how do i now deploy it not just on my local dev but on my prod box? this is probably a small docker question than anything else e.g. I am using the official https://github.com/airbytehq/airbyte/blob/master/docker-compose.yaml to start it on prod, i guess i need to register my local image somewhere and then have an own docker compose manifest that pulls it from there? (bearbeitet)
👀 1
h
Hey once you are done changing 1. You can build the docker image and give it a tag like
docker build . -t airbyte-source:0.1.0
something of this sort while you are inside the connector folder 2. You can add this as a custom connector in settings -> Sources -> Add custom connector
t
ah nice so i don’t build the whole airbyte docker image just the custom connector
h
Yeah you needn't do that
t
yes that makes sense and then i plug it into production, this modular system is genious!
😁 1
what I did on local is build it with a dev tag and then under connectors i had to select version “dev” for airbyte to pick it up on local dev. I don’t know if thats intented but i could not find it in the docs anywhere.
h
Yeah by default we build with dev tag but yeah you can tag it with
docker tag
to whatever you want to