-
Notifications
You must be signed in to change notification settings - Fork 623
Expand file tree
/
Copy pathdocker-compose.build.yaml
More file actions
60 lines (60 loc) · 1.74 KB
/
docker-compose.build.yaml
File metadata and controls
60 lines (60 loc) · 1.74 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
services:
frontend:
image: unstract/frontend:${VERSION}
build:
dockerfile: docker/dockerfiles/frontend.Dockerfile
context: ..
target: production
backend:
image: unstract/backend:${VERSION}
build:
dockerfile: docker/dockerfiles/backend.Dockerfile
context: ..
runner:
image: unstract/runner:${VERSION}
build:
dockerfile: docker/dockerfiles/runner.Dockerfile
context: ..
tool-sidecar:
image: unstract/tool-sidecar:${VERSION}
build:
dockerfile: docker/dockerfiles/tool-sidecar.Dockerfile
context: ..
tool-structure:
image: unstract/tool-structure:${VERSION}
build:
dockerfile: tools/structure/Dockerfile
context: ..
tool-text_extractor:
image: unstract/tool-text_extractor:${VERSION}
build:
dockerfile: tools/text_extractor/Dockerfile
context: ..
tool-classifier:
image: unstract/tool-classifier:${VERSION}
build:
dockerfile: tools/classifier/Dockerfile
context: ..
platform-service:
image: unstract/platform-service:${VERSION}
build:
dockerfile: docker/dockerfiles/platform.Dockerfile
context: ..
prompt-service:
image: unstract/prompt-service:${VERSION}
build:
dockerfile: docker/dockerfiles/prompt.Dockerfile
context: ..
x2text-service:
image: unstract/x2text-service:${VERSION}
build:
dockerfile: docker/dockerfiles/x2text.Dockerfile
context: ..
# Unified worker image (replaces all individual worker images)
worker-unified:
image: unstract/worker-unified:${VERSION}
build:
dockerfile: docker/dockerfiles/worker-unified.Dockerfile
context: ..
args:
MINIMAL_BUILD: ${MINIMAL_BUILD:-0} # Set to 1 for faster dev builds