-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
docker-compose.build.yaml
45 lines (44 loc) · 1.04 KB
/
docker-compose.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
42
43
44
45
version: "3.7"
services:
db:
image: airbyte/db:dev
build:
dockerfile: Dockerfile
context: airbyte-db
labels:
io.airbyte.git-revision: ${GIT_REVISION}
init:
image: airbyte/init:dev
build:
dockerfile: Dockerfile
context: airbyte-config/init
labels:
io.airbyte.git-revision: ${GIT_REVISION}
seed:
image: airbyte/seed:dev
build:
dockerfile: Dockerfile
context: airbyte-config/init
labels:
io.airbyte.git-revision: ${GIT_REVISION}
scheduler:
image: airbyte/scheduler:dev
build:
dockerfile: Dockerfile
context: airbyte-scheduler
labels:
io.airbyte.git-revision: ${GIT_REVISION}
server:
image: airbyte/server:dev
build:
dockerfile: Dockerfile
context: airbyte-server
labels:
io.airbyte.git-revision: ${GIT_REVISION}
webapp:
image: airbyte/webapp:dev
build:
dockerfile: Dockerfile
context: airbyte-webapp
labels:
io.airbyte.git-revision: ${GIT_REVISION}