1
0
mirror of synced 2026-01-05 21:02:13 -05:00
Files
airbyte/docker-compose-cloud.build.yaml
Anne 245e617a21 Add container orchestrator for cloud deploy (#12076)
* Add container orchestrator for cloud deploy
Co-authored-by: Parker Mossman <parker@airbyte.io>
2022-04-15 14:05:12 -07:00

42 lines
1.1 KiB
YAML

# Defines the minimum set of images needed to run Cloud.
# Used to push OSS images that Cloud depends on.
version: "3.7"
services:
scheduler:
image: airbyte/scheduler:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-scheduler/app
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}
webapp:
image: airbyte/webapp:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-webapp
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}
container-orchestrator:
image: airbyte/container-orchestrator:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-container-orchestrator
labels:
io.airbyte.git-revision: ${GIT_REVISION}