-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdocker-compose.yml
82 lines (82 loc) · 1.96 KB
/
docker-compose.yml
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
78
79
80
81
82
version: "2"
services:
reference-ui:
image: openlmis/dev-ui:9.0.8-SNAPSHOT
working_dir: /app
volumes:
- '.:/app'
ports:
- "9000:9000"
- "9876:9876"
env_file: .env
volumes_from:
- auth-ui
- fulfillment-ui
- referencedata-ui
- requisition-ui
- report-ui
- stockmanagement-ui
- cce-ui
- ui-components
- ui-layout
- offline-ui
- one-network-integration-ui
depends_on:
- auth-ui
- fulfillment-ui
- referencedata-ui
- requisition-ui
- report-ui
- stockmanagement-ui
- cce-ui
- ui-components
- ui-layout
- offline-ui
- one-network-integration-ui
auth-ui:
image: openlmis/auth-ui:6.2.15-SNAPSHOT
volumes:
- '/openlmis-auth-ui'
fulfillment-ui:
image: openlmis/fulfillment-ui:6.1.6-SNAPSHOT
volumes:
- '/openlmis-fulfillment-ui'
referencedata-ui:
image: openlmis/referencedata-ui:5.6.16-SNAPSHOT
volumes:
- '/openlmis-referencedata-ui'
report-ui:
image: openlmis/report-ui:5.2.14-SNAPSHOT
volumes:
- '/openlmis-report-ui'
requisition-ui:
image: openlmis/requisition-ui:7.0.14-SNAPSHOT
volumes:
- '/openlmis-requisition-ui'
stockmanagement-ui:
image: openlmis/stockmanagement-ui:2.1.8-SNAPSHOT
volumes:
- '/openlmis-stockmanagement-ui'
cce-ui:
image: openlmis/cce-ui:1.1.7-SNAPSHOT
volumes:
- '/openlmis-cce-ui'
ui-components:
image: openlmis/ui-components:7.2.13-SNAPSHOT
volumes:
- '/openlmis-ui-components'
ui-layout:
image: openlmis/ui-layout:5.2.8-SNAPSHOT
volumes:
- '/openlmis-ui-layout'
offline-ui:
image: openlmis/offline-ui:1.0.7-SNAPSHOT
volumes:
- '/openlmis-offline-ui'
one-network-integration-ui:
image: openlmis/one-network-integration-ui:0.0.6-SNAPSHOT
volumes:
- '/one-network-integration-ui'
image:
build: .
image: openlmis/reference-ui