-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
57 lines (57 loc) · 1.11 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
version: "3.7"
services:
api-user:
image: openemp/user-api:latest
environment:
spring_profiles_active: dev
networks:
openemp:
aliases:
- user-api
ui-core:
image: openemp/core-ui:latest
networks:
openemp:
aliases:
- core-ui
ui-root:
image: openemp/root-ui:latest
networks:
openemp:
aliases:
- root-ui
volumes:
- "./proxy/confs/nginx.conf:/etc/nginx/nginx.conf"
ports:
- "80:80"
- "443:80"
ui-style:
image: openemp/style-ui:latest
volumes:
- "./proxy/nginx.conf:/etc/nginx/nginx.conf"
networks:
openemp:
aliases:
- style-ui
ui-login:
image: openemp/login-ui:latest
volumes:
- "./proxy/nginx.conf:/etc/nginx/nginx.conf"
networks:
openemp:
aliases:
- login-ui
ui-drawer:
image: openemp/drawer-ui:latest
networks:
openemp:
aliases:
- drawer-ui
ui-navbar:
image: openemp/navbar-ui:latest
networks:
openemp:
aliases:
- navbar-ui
networks:
openemp: