-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcompose.test.yaml
More file actions
77 lines (66 loc) · 1.37 KB
/
compose.test.yaml
File metadata and controls
77 lines (66 loc) · 1.37 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: dtm-test
networks:
dtm-network:
name: dtm-network
volumes:
db-data:
minio-data:
frontend-html:
services:
backend:
extends:
file: compose.yaml
service: backend
build:
context: src/backend
args:
INSTALL_TEST: "true"
environment:
MONITORING: ""
LOG_LEVEL: "INFO"
ODM_ENDPOINT: http://nodeodm:3000
S3_ENDPOINT_UPLOAD: http://localhost:9000
S3_ENDPOINT_DOWNLOAD: http://localhost:9000
frontend:
extends:
file: compose.yaml
service: frontend
ports:
- "3040:3040"
db:
extends:
file: compose.yaml
service: db
minio:
extends:
file: compose.yaml
service: minio
createbuckets:
extends:
file: compose.yaml
service: createbuckets
migrations:
extends:
file: compose.yaml
service: migrations
environment:
MONITORING: ""
arq-worker:
extends:
file: compose.yaml
service: arq-worker
environment:
ODM_ENDPOINT: http://nodeodm:3000
S3_ENDPOINT_UPLOAD: http://localhost:9000
S3_ENDPOINT_DOWNLOAD: http://localhost:9000
dragonfly:
extends:
file: compose.yaml
service: dragonfly
nodeodm:
extends:
file: compose.yaml
service: nodeodm
ports:
# Using 9901 to avoid collision with the inherited file's 9900
- "9901:3000"