* init * bad copy/paste * move to top level * Revert "move to top level" This reverts commitaca3534d38. * attempt to wire up connector builder frontend to server * copy from octaviacli * fix connection to builder server * update * delete * Update * delete python-version * Revert "delete python-version" This reverts commitf9258a7755. * setup python * install python * rename * kube stuff * Install python * missing kube file * rename * Update files * Update bumpversion * install python * try with different entrypoint * rename container * point to docker-compose.yaml file * derp * copy acceptance_test.sh * copy from acceptance tests * delete cruft * update * remove application env * reset * reset to master * update * skip comprehensive incremental tests * Revert "skip comprehensive incremental tests" This reverts commit9cee657596. * reset to master * remove cruft * delete superfluous steps * update port to 8003 * reset to master * Update publish docker * move openapi spec to airbyte-connector-builder * point to openapi spec * dont expose the connector builder to localhost * reset FE components to master * Don't deploy the connector-builder * Revert "Don't deploy the connector-builder" This reverts commit3d157494cf. * Revert "Revert "Don't deploy the connector-builder"" This reverts commitbeac3d48f0. * comment out more things related to connector builder server * more attempts at removing the connector builder * comment out more things * Apply suggestions from code review Co-authored-by: Lake Mossman <lake@airbyte.io> * Update airbyte-webapp/src/config/configProviders.ts Co-authored-by: Lake Mossman <lake@airbyte.io> * update * rename * indent * Revert "move openapi spec to airbyte-connector-builder" This reverts commit57dda04723. * Revert "rename" This reverts commitb2d802b8fa. * Revert "Revert "rename"" This reverts commit91db24fd4a. * point to wrong file in case it fixes the build * point to right openapi file * Revert "Revert "move openapi spec to airbyte-connector-builder"" This reverts commite46a837454. * point to moved file * fix path * Update from master * newline * Add failing test * Revert "Add failing test" This reverts commited9fea09b5. * comment * update commented requires * Add a comment * 2022 * rename to connector-builder-server * typo Co-authored-by: lmossman <lake@airbyte.io>
74 lines
1.9 KiB
YAML
74 lines
1.9 KiB
YAML
version: "3.7"
|
|
|
|
services:
|
|
init:
|
|
image: airbyte/init:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-config/init
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
bootloader:
|
|
image: airbyte/bootloader:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-bootloader
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
db:
|
|
image: airbyte/db:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-db/db-lib
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
worker:
|
|
image: airbyte/worker:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-workers
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
#connector-builder-server:
|
|
# image: airbyte/connector-builder-server:${VERSION}
|
|
# build:
|
|
# dockerfile: Dockerfile
|
|
# context: airbyte-connector-builder-server
|
|
# labels:
|
|
# io.airbyte.git-revision: ${GIT_REVISION}
|
|
server:
|
|
image: airbyte/server:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-server
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
webapp:
|
|
image: airbyte/webapp:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-webapp
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
temporal:
|
|
image: airbyte/temporal:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-temporal
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
container-orchestrator:
|
|
image: airbyte/container-orchestrator:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-container-orchestrator
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|
|
metric-reporter:
|
|
image: airbyte/metrics-reporter:${VERSION}
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: airbyte-metrics/reporter
|
|
labels:
|
|
io.airbyte.git-revision: ${GIT_REVISION}
|