-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathdev-docker-compose.yml
61 lines (56 loc) · 1.58 KB
/
dev-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
frontend:
image: java:8-jre
links:
- person
ports:
- "8081:8081"
volumes:
- docker/volume-frontend:/frontend
- docker/volume-log:/log
command: ["java", "-jar", "-Done-jar.silent=true", "/frontend/FrontendApplication.jar", "server", "/frontend/config.yml"]
authentication:
image: java:8-jre
ports:
- "8082:8082"
volumes:
- docker/volume-authentication:/authentication
- docker/volume-log:/log
command: ["java", "-jar", "-Done-jar.silent=true", "/authentication/AuthenticationApplication.jar", "server", "/authentication/config.yml"]
authorisation:
image: java:8-jre
ports:
- "8083:8083"
volumes:
- docker/volume-authorisation:/authorisation
- docker/volume-log:/log
command: ["java", "-jar", "-Done-jar.silent=true", "/authorisation/AuthorisationApplication.jar", "server", "/authorisation/config.yml"]
session:
image: java:8-jre
ports:
- "8084:8084"
volumes:
- docker/volume-session:/session
- docker/volume-log:/log
command: ["java", "-jar", "-Done-jar.silent=true", "/session/SessionApplication.jar", "server", "/session/config.yml"]
person:
image: java:8-jre
links:
- authorisation
ports:
- "8085:8085"
volumes:
- docker/volume-person:/person
- docker/volume-log:/log
command: ["java", "-jar", "-Done-jar.silent=true", "/person/PersonApplication.jar", "server", "/person/config.yml"]
web:
build: docker/image-nginx-lua/.
links:
- frontend
- authentication
- session
- person
ports:
- "8080:8080"
volumes:
- docker/volume-nginx-conf.d:/opt/nginx/conf
- docker/volume-log:/var/log/nginx