-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
46 lines (46 loc) · 1.04 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
version: "2"
services:
offline-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
- referencedata-ui
- ui-components
- ui-layout
- stockmanagement-ui
depends_on:
- auth-ui
- referencedata-ui
- ui-components
- ui-layout
- stockmanagement-ui
auth-ui:
image: openlmis/auth-ui:6.2.14-SNAPSHOT
volumes:
- '/openlmis-auth-ui'
referencedata-ui:
image: openlmis/referencedata-ui:5.6.14-SNAPSHOT
volumes:
- '/openlmis-referencedata-ui'
ui-components:
image: openlmis/ui-components:7.2.13-SNAPSHOT
volumes:
- '/openlmis-ui-components'
ui-layout:
image: openlmis/ui-layout:5.2.7-SNAPSHOT
volumes:
- '/openlmis-ui-layout'
stockmanagement-ui:
image: openlmis/stockmanagement-ui:2.1.8-SNAPSHOT
volumes:
- '/openlmis-stockmanagement-ui'
image:
build: .
image: openlmis/offline-ui