forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-cloud.build.yaml
41 lines (39 loc) · 1.1 KB
/
docker-compose-cloud.build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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}