I have built a local container in my dev for githu...
# ask-community-for-troubleshooting
d
I have built a local container in my dev for github can see it in the docker images but need to run it. Any idea how to run it?
k
A message from kapa.ai
To run your locally built connector, you can follow these steps: 1. Make sure you have built the connector using the appropriate Gradle command. For example, if your connector is a source connector, you can build it using:
Copy code
./gradlew :airbyte-integrations:connectors:your-connector:build
2. After building the connector, you should see the image in your Docker images list. You can check this by running:
Copy code
docker image ls
3. To run Airbyte in
dev
mode, you can use the following commands in your local
airbyte-platform
repository:
Copy code
SUB_BUILD=PLATFORM ./gradlew build VERSION=dev docker compose up
This will run Airbyte with your locally built connector in
dev
mode. You can then access the Airbyte web app at http://localhost:8000/ and set up your connector. For more information, you can refer to the [Developing Locally](https://docs.airbyte.com/contributing-to-airbyte/developing-locally) documentation.