1
0
mirror of synced 2026-01-01 09:02:59 -05:00
Files
airbyte/docker-compose-cloud.buildx.yaml
Conor 87bba8e1fb ci: build and publish cron with other oss images (#17560)
This is needed for cron to be consumed downstream with the correct tag in cloud
2022-10-04 10:05:06 -05:00

103 lines
2.7 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:
worker:
image: airbyte/worker:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-workers/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
args:
VERSION: ${VERSION}
x-bake:
tags:
- airbyte/worker:${VERSION}
- airbyte/worker:${ALT_TAG:-${VERSION}}
platforms:
- linux/amd64
- linux/arm64
webapp:
image: airbyte/webapp:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-webapp/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
args:
VERSION: ${VERSION}
x-bake:
tags:
- airbyte/webapp:${VERSION}
- airbyte/webapp:${ALT_TAG:-${VERSION}}
platforms:
- linux/amd64
- linux/arm64
metric-reporter:
image: airbyte/metrics-reporter:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-metrics/reporter/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
args:
VERSION: ${VERSION}
x-bake:
tags:
- airbyte/metrics-reporter:${VERSION}
- airbyte/metrics-reporter:${ALT_TAG:-${VERSION}}
platforms:
- linux/amd64
- linux/arm64
container-orchestrator:
image: airbyte/container-orchestrator:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-container-orchestrator/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
args:
VERSION: ${VERSION}
x-bake:
tags:
- airbyte/container-orchestrator:${VERSION}
- airbyte/container-orchestrator:${ALT_TAG:-${VERSION}}
platforms:
- linux/amd64
- linux/arm64
db:
image: airbyte/db:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-db/db-lib/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
args:
VERSION: ${VERSION}
x-bake:
tags:
- airbyte/db:${VERSION}
- airbyte/db:${ALT_TAG:-${VERSION}}
platforms:
- linux/amd64
- linux/arm64
cron:
image: airbyte/cron:${VERSION}
build:
dockerfile: Dockerfile
context: airbyte-cron/build/docker
labels:
io.airbyte.git-revision: ${GIT_REVISION}
args:
VERSION: ${VERSION}
x-bake:
tags:
- airbyte/cron:${VERSION}
- airbyte/cron:${ALT_TAG:-${VERSION}}
platforms:
- linux/amd64
- linux/arm64