https://linen.dev logo
#ask-community-for-troubleshooting
Title
# ask-community-for-troubleshooting
k

kshitij chaurasiya

01/13/2022, 1:59 PM
Hi Team, I'm new to Airbyte, I was trying to build the airbyte component separately and build is failing with the following error
Copy code
FAILURE: Build failed with an exception.

* Where:
Build file '/Users/kshitijchaurasiya/SandboxDev/airbyte/airbyte-cdk/python/build.gradle' line: 3

* What went wrong:
An exception occurred applying plugin request [id: 'airbyte-docker']
> Failed to apply plugin 'airbyte-docker'.
   > A problem occurred starting process 'command 'docker''
And docker is running properly on the system, so I'm not sure why its failing, is anyone else faced the same issue.
Copy code
➜  airbyte git:(master) ✗ docker ps
CONTAINER ID   IMAGE     COMMAND   CREATED   STATUS    PORTS     NAMES
Or Is there is some documentation of building the component separately. Any help will be appreciated.
👀 1
1
n

Noah Kawasaki

01/13/2022, 2:05 PM
What was the gradlew command?
u

[DEPRECATED] Augustin Lafanechere

01/13/2022, 3:03 PM
Hi @kshitij chaurasiya, you'll find doc here about how to develop locally. Could you please share what you're trying to achieve specifically? Please also feel free to post to #dev to get help from other Airbyte developers.
k

kshitij chaurasiya

01/13/2022, 3:24 PM
Hi @[DEPRECATED] Augustin Lafanechere, Thank you so much for the doc link, currently I have task to see the platforms for data connector, so I was going though some of the open-source data connector platform, so currently I m understanding the Airbyte solution.
@Noah Kawasaki I used ./gradlew build
u

[DEPRECATED] Augustin Lafanechere

01/13/2022, 5:21 PM
If you want to build connectors you have to run
SUB_BUILD=CONNECTORS_BASE ./gradlew build
If you want to build platform:
SUB_BUILD=PLATFORM ./gradlew build
👍 1
u

[DEPRECATED] Marcos Marx

01/13/2022, 5:50 PM
@kshitij chaurasiya make sure docker is installed, can be run without sudo user and is active
👍 1
k

kshitij chaurasiya

01/14/2022, 5:46 AM
Thank you @[DEPRECATED] Augustin Lafanechere and @[DEPRECATED] Marcos Marx the docker issue is resolved, now getting npm related issue but I guess those are resolvable.